Multi PDF TO Multi TIFF

XnConvert Multi Platform - Windows, MacOSX, Linux

Moderators: XnTriq, helmut, xnview

Post Reply
Fortre
Posts: 2
Joined: Fri Jun 11, 2021 7:19 pm

Multi PDF TO Multi TIFF

Post 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)
cday
XnThusiast
Posts: 3973
Joined: Sun Apr 29, 2012 9:45 am
Location: Cheltenham, U.K.

Re: Multi PDF TO Multi TIFF

Post 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.
Fortre
Posts: 2
Joined: Fri Jun 11, 2021 7:19 pm

Re: Multi PDF TO Multi TIFF

Post by Fortre »

Thank you !

Final code

Code: Select all

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