vimwiki

beau's personal wiki, made using vim
git clone https://git.beauhilton.com/vimwiki.git
Log | Files | Refs | README

convert_many_pdfs_to_jpg.md (324B)


      1 # Convert Many PDFs Into JPG
      2 :image_processing:
      3 
      4     for f in *.pdf; do convert -verbose -density 150 -trim "$f" -quality 100 -flatten -sharpen 0x1.0 "${f%pdf}jpg" ; done
      5 
      6 This gives pretty nice rendering of text and images, though it isn't perfect. It's the best solution I've found so far.
      7 Sun 17 Nov 2019 10:23:05 AM CST