Skip to content

Instantly share code, notes, and snippets.

@mallamanis
Created June 7, 2011 21:26
Show Gist options
  • Select an option

  • Save mallamanis/1013209 to your computer and use it in GitHub Desktop.

Select an option

Save mallamanis/1013209 to your computer and use it in GitHub Desktop.
Convert .pdf to .tiff (Ktimatologio standard format)
#!/bin/bash
for doc in ./*.pdf; do
convert -units PixelsPerInch -density 150 -type Grayscale -depth 4 -monochrome -compress LZW $doc $doc.tif;
echo 'Done with' $doc;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment