Skip to content

Instantly share code, notes, and snippets.

View openize-imaging-gists's full-sized avatar

Openize Imaging Gists openize-imaging-gists

View GitHub Profile
@openize-imaging-gists
openize-imaging-gists / heic-to-argb32-pixels.cs
Last active June 3, 2024 15:20
Openize.HEIC Code Snippets
// Decode .heic file to int array with Argb32 data
using (var fs = new FileStream("filename.heic", FileMode.Open))
{
HeicImage image = HeicImage.Load(fs);
int[] pixels = image.GetInt32Array(Heic.Decoder.PixelFormat.Argb32);
}