Created
February 10, 2020 15:38
-
-
Save jz5/957034cfb471953506fabd9b643cbcd4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var apng = new APNG("a.png"); | |
var bitmaps = apng.ToBitmapSources(); | |
// Save to PNG files | |
foreach (var (bitmap, index) in bitmaps.Select((item, index) => (item, index))) | |
{ | |
using (var fileStream = new FileStream($"{index}.png", FileMode.Create)) | |
{ | |
var encoder = new PngBitmapEncoder(); | |
encoder.Frames.Add(BitmapFrame.Create(bitmap)); | |
encoder.Save(fileStream); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment