I have code that converts each slide to an image (jpg, tif) using the ISlide.GetGetThumbnail method.
The problem is the resulting file appears to have a “margin” on the left and the image is cut off on the right.
using (Bitmap img = ((ISlide) slide).GetThumbnail(tiffOptions))
{
img.Save(tempFile, ImageFormat.Tiff);
}