User:Horndude77/scripts

makepdf.rb

Convert a bunch of tiff files to a pdf. Uses the libtiff tools tiffcp and tiff2pdf.

  1. #!/usr/bin/env ruby
  2.  
  3. #first - tiff which will be first page of pdf
  4. #last - tiff while will be last page of pdf
  5. #prefix - prefix of all tiff files
  6. #filename - name of pdf file (no spaces)
  7. def make_pdf(first, last, prefix, filename)
  8. unless(File.exists?(filename+'.pdf'))
  9. puts filename
  10. files = (first..last).to_a.map{|i| prefix+("%04d"%i)+'.tiff'}
  11. `tiffcp #{files.join(' ')} #{filename}.tiff`
  12. `tiff2pdf #{filename}.tiff -t"#{filename.gsub('_', ' ')}" -z -o #{filename}.pdf`
  13. `rm #{filename}.tiff`
  14. end
  15. end
  16.  
  17. #Example:
  18. #Files are named BookIV-0001.tiff through BookIV-0040.tiff
  19. make_pdf(1, 40, 'BookIV-', "Schantl-School_for_the_Horn_Book_IV_a")

pdf2tiffs

Convert a pdf file to a bunch of tiffs. With this method you need to manually figure out the dpi.

  1. #!/bin/sh
  2. #usage $0 <input> <prefix> [other options]
  3. PREFIX=$2
  4. DPI=300x300
  5. pdfimages $1 $PREFIX
  6. for i in $PREFIX*.ppm
  7. do
  8. cmd="convert -density $DPI -units PixelsPerInch $i $3 -monochrome -compress Group4 `echo $i | sed -e 's_\.[^.]*$_.tiff_'`"
  9. echo $cmd
  10. eval $cmd
  11. done
  12. for i in $PREFIX*.pbm
  13. do
  14. cmd="convert -density $DPI -units PixelsPerInch $i $3 -compress Group4 `echo $i | sed -e 's_\.[^.]*$_.tiff_'`"
  15. echo $cmd
  16. eval $cmd
  17. done
  18. rm $PREFIX*.pbm $PREFIX*.ppm