First of all thank you for this great library!
I am using the latest version of Magick.NET (x64, Q8, .NET 4.5) to open, coalesce and save the following animated gif image:
http://img3.fotos-hochladen.net/uploads/66901gqceyar.gif (also attached to this issue).
```
using (var originalImage = new MagickImageCollection(originalImageStream))
{
originalImage.Coalesce();
originalImage.Write(targetStream);
}
```
The coalesced image now has a black border at the right and the bottom which it had not before. I suppose this is a bug?
Comments: According to the documentation of ImageMagick all images should have the same size when you use coalesce: http://imagemagick.org/script/command-line-options.php#coalesce. Your image does not contain frames with the same size. I will close this issue.
I am using the latest version of Magick.NET (x64, Q8, .NET 4.5) to open, coalesce and save the following animated gif image:
http://img3.fotos-hochladen.net/uploads/66901gqceyar.gif (also attached to this issue).
```
using (var originalImage = new MagickImageCollection(originalImageStream))
{
originalImage.Coalesce();
originalImage.Write(targetStream);
}
```
The coalesced image now has a black border at the right and the bottom which it had not before. I suppose this is a bug?
Comments: According to the documentation of ImageMagick all images should have the same size when you use coalesce: http://imagemagick.org/script/command-line-options.php#coalesce. Your image does not contain frames with the same size. I will close this issue.