Hello,
I do convert a multipage tiff file from colour to black and white like this:
int ImageID = l_gdPictureImaging.TiffCreateMultiPageFromFile(p_nomFichierSrc);
for (int i = 0; i < l_gdPictureImaging.TiffGetPageCount(ImageID); i++)
{
l_gdPictureImaging.TiffSelectPage(ImageID, i + 1);
l_gdPictureImaging.FxBlackNWhite(ImageID, BitonalReduction.OrderedDither);
l_gdPictureImaging.ConvertTo1BppFast(ImageID);
}
l_gdPictureImaging.TiffSaveMultiPageToFile(ImageID, l_nomFichierDst, TiffCompression.TiffCompressionCCITT4);
l_gdPictureImaging.ReleaseGdPictureImage(ImageID);
This work fine normally. But on some machine, some conversion do generate a very bad black and white image, as you can see in the attached document. The same image converted on another machine does not have tis problem....
Any idea ?
Thanks
Francis
