Combine PDF-Files on Linux (Ubuntu)
First install pdftk sudo aptitude install pdftk Now combine the files with: pdftk file_1.pdf file_2.pdf file_3.pdf cat output combined.pdf
First install pdftk sudo aptitude install pdftk Now combine the files with: pdftk file_1.pdf file_2.pdf file_3.pdf cat output combined.pdf
Using "convert" from "imagemagick" to convert a PDF to Image. Example: convert -geometry 1024x768 -density 200 -colorspace RGB input.pdf output.jpg Or use a other geometry, quality and no color: convert…