pdf-image.txt (767B)
1 ========================================================================= 2 PDF and Images related commands 3 ========================================================================= 4 5 Combine PDFs: 6 7 gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=combined.pdf input1.pdf input2.pdf 8 9 With slight compression: 10 11 gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -sOutputFile=combined.pdf input1.pdf input2.pdf 12 13 Rasterize PDF to reduce its size: 14 15 convert -density 200 combined.pdf -quality 90 -compress jpeg combined_raster_hq.pdf 16 17 ========================================================================= 18 Read PDF in terminal 19 ========================================================================= 20 21 sudo pacman -S poppler 22 pdftotext -layout file.pdf - | less