Quote:
Originally Posted by Bennu
Thank you for this great software!
If I use
Code:
k2pdfopt -n -wrap- -mode tm
or
Code:
k2pdfopt -wrap- -mode tm
is it possible to rescale the pages to a common width without changing the resolution of the embedded images?
For example I would like the above options plus rescale all pages to a common width of 7 inch.
Right now the unscaled pages look in my pdfreader like in the attachment.
|
This should be possible. You want to keep the output in native mode so as not to change the resolution of your embedded PDF images. I would simply set your device output to 7 inches x XX inches and use -mode fitwidth. I'm not sure if that's exactly what you want. E.g. maybe
Code:
k2pdfopt -h 10in -w 7in -mode fw -ls- mysource.pdf
You could also try it with -mode trim or -mode fitpage instead.
Edit: On second thought, don't use -mode trim--it resets the page size of each page to be whatever the trimmed source content size is.