Hi,
I am using ASPOSE.WORDS for Doc/Docx/Txt to Tiff conversion. while converting the file i want to set the properties like
Color: Black and white
Coding Format: MH
Resolution: 204*196, 204 * 98, 200 * 200, 200 * 100
Page Data: 1728 pixels per line
below is my test code but by setting this it is not works for me for your reference i am attaching a test targeted tiff file.
Document doc = new Document(@"C:\Test\Test.docx");
ImageSaveOptions opt = new ImageSaveOptions(SaveFormat.Tiff);
opt.ImageColorMode = ImageColorMode.BlackAndWhite;
opt.TiffBinarizationMethod = ImageBinarizationMethod.Threshold;
opt.TiffCompression = TiffCompression.None;
opt.UseAntiAliasing = true;
opt.Resolution = 200;
opt.UseHighQualityRendering = true;
doc.Save(@"C:\Test\aspDocTtiff.tif", opt);
Also how can set the width and height of the tiff file.
Thanks & Regards
Manoj Surve