
: Using K2pdfopt to prepare a document for printing Can I use K2pdfopt to take a PDF, crop it to the tightest bounding box, and generate a new PDF with 2 consecutive (portrait) pages set side-by-side
Can I use K2pdfopt to take a PDF, crop it to the tightest bounding box, and generate a new PDF with 2 consecutive (portrait) pages set side-by-side on the same (landscape) page such that they are scaled to maximally fill an A4 page (preserving aspect ratio)?
If so, what command line options will allow me to achieve this?
By removing margins and such re-scaling I can save a lot of paper when I need to print a document.
Free books android app tbrJar TBR JAR Read Free books online gutenberg
More posts by @BetL

: How do I export Wikipedia article collections to epub? I used to do that a year or two ago and it was pretty straightforward back than (there was Export to epub link or something like this

: Using Kindle Preview 3 export, Amazon says the file type is not supported I converted a pdf file to mobi using Calibre, then opened the mobi file in Kindle Previewer 3. I have exported the
1 Comments
Sorted by latest first Latest Oldest Best
This is commonly called "2-up" page placement, and, no, k2pdfopt cannot do 2-up page placement by itself. Sorry. But you can run k2pdfopt in "fit-width" mode with the width and height of the output page set for normal portrait like so:
k2pdfopt -ds 2 -w 8.5in -h 11in -mode fw -ls- ...
This will strip the margins and create 8.5x11-inch pages. (The -ds 2 scales up the source document so it will fit the full width of a portrait page.) Then you can use CutePDF's print-to-PDF driver (free download) to print that 8.5x11-inch PDF 2-up by selecting 2 pages per sheet in the printer preferences.
Or you can use Coherent PDF's command-line tool (free for personal use). In this case, I use cpdf's -twoup-stack option, so I want the k2pdfopt output pages to be exactly half the size of an 11x8.5 page.
k2pdfopt -w 5.5in -h 8.5in -mode fw -ls- myfile.pdf
cpdf -twoup-stack myfile_k2opt.pdf -o temp.pdf
cpdf -rotate 90 temp.pdf -o final.pdf
Examples here.
Free books android app tbrJar TBR JAR Read Free books online gutenberg