Ryan Thiele
Ryan Thiele
The new image has all the properties as the original except for the raw format (e.g. gif, png, bmp, etc...) ```cs // save to memory img.Save(ms, ImageFormat.Png); ms.Seek(0, SeekOrigin.Begin); //...
Should I use different naming conventions for the memory stream? The variable `ms` does feel pretty generic. Are there any other problems/questions with the PR?
the image passed is is reassigned, so the original reference is destroyed (disposed). Since the argument is passed by reference, I guess it would be better to create a new...
Although this issue is old, it is not an issue. This is due to the format animated gif (and gifs in general). A work around is to save it to...
@DataDink #12 pull request for this issue was made.