Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 383 Bytes

File metadata and controls

15 lines (10 loc) · 383 Bytes

NeoSolve.ImageSharp.AVIF

AVIF encoder for ImageSharp via the avifenc binary taken from here: https://github.com/AOMediaCodec/libavif/releases

Example usage

using NeoSolve.ImageSharp.AVIF;
using SixLabors.ImageSharp;


using var im = await Image.LoadAsync("input.jpg");

var encoder = new AVIFEncoder { CQLevel = 18 };
await im.SaveAsync("output.avif", encoder);