Dear Support,
I am trying to find an example converting a multiple page PDF to a multiple page tiff file..
The below code only converts the first page..
Aspose.Pdf.Document d = new Aspose.Pdf.Document(filePath);
//create Resolution object
Resolution resolution = new Resolution(300);
//create TiffSettings object
TiffSettings tiffSettings = new TiffSettings();
tiffSettings.Compression = CompressionType.None;
tiffSettings.Depth = ColorDepth.Default;
tiffSettings.Shape = ShapeType.Landscape;
tiffSettings.SkipBlankPages = false;
//create TIFF device
TiffDevice tiffDevice = new TiffDevice(resolution, tiffSettings);
//convert a particular page and save the image to stream
tiffDevice.Process(d, 1, 1,output.tif");
Please advise
Thank You