I am using Magick.NET to crop .tiff images. In the example below, I cropped it through the middle of the ending 'e'. When I let Windows do a preview on this, the windows preview is absolutely correct, and the crop is exactly where it should be. However, if I open this in photoshop, the crop mark is at about 2/3 of the way from the left, totally in the wrong part. And photoshop does not show the whole image?
What am I doing wrong here that the cropping is off by so much?
The image can be downloaded at https://Boomerangdm.com/sample.tif
MagickImage img = new MagickImage(strFileName);
img.Crop(new MagickGeometry(x, y, width, height));
img.Page = new MagickGeometry(0, 0, width, height);
img.Write(strCrop);
What am I doing wrong here that the cropping is off by so much?
The image can be downloaded at https://Boomerangdm.com/sample.tif
MagickImage img = new MagickImage(strFileName);
img.Crop(new MagickGeometry(x, y, width, height));
img.Page = new MagickGeometry(0, 0, width, height);
img.Write(strCrop);