How do you split an animated GIF into its component parts in .net?
In particular, I want to load them into an image (System.Drawing.Image) in memory.
========================
Based on SLaks answer I now have this
public static IEnumerable<Bitmap> GetImages(Stream stream) { using (var gifImage = Image.FromStream(stream)) {
Simon
source share