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: ** Comment from web user: dlemstra **
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: ** Comment from web user: dlemstra **
Turns out that the problem was actually the page geometry. More info here: http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23878