I am doing the following to resize an image. When doing this, it adds a black like at the top of the image, even though the fill color is white.
https://www.boomerangdm.com/After.tif
MagickImage from = new MagickImage(strTempFile);
from.Extent(MaxWidth, MaxHeight, Gravity.Center, new MagickColor(Color.White));
if (strNewExt.ToLower() == ".tiff"
|| strNewExt.ToLower() == ".tif")
{
from.RemoveProfile("tiff:37724");
}
from.Write(strFileName);
from.Dispose();
https://www.boomerangdm.com/Before.tifhttps://www.boomerangdm.com/After.tif