Page 1 of 1

Multi PDF TO Multi TIFF

Posted: Fri Jun 11, 2021 7:27 pm
by Fortre
Hello
im trying do this but only getting simple page (PDF with 3 pag)

Code: Select all

 NCONVERT -c 2 -o $output -xall -out tiff * -multi $input 

Result : TIFF with firsten page only

(sorry my bad english)

Re: Multi PDF TO Multi TIFF

Posted: Fri Jun 11, 2021 7:59 pm
by cday
The following basic code should work in Windows CMD, I think:

Code: Select all

nconvert -out tiff -multi -o Output.tif Input.pdf
You will need to add suitable compression for the output TIFF file, and you may need a -dpi term to obtain good image quality.

I don't think from memory that a -xall term is needed when converting from multi-page file to multi-page file.

I can't easily test at the moment but the above may help.

Re: Multi PDF TO Multi TIFF

Posted: Fri Jun 11, 2021 8:47 pm
by Fortre
Thank you !

Final code

Code: Select all

NCONVERT -c 5 -o $output -multi -out tiff * $input