Skip to content

Instantly share code, notes, and snippets.

@muyesh
Created May 10, 2011 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muyesh/964857 to your computer and use it in GitHub Desktop.
Save muyesh/964857 to your computer and use it in GitHub Desktop.
ImageMagicを利用してPPTとかのPDFをKindle3用の画像アーカイブzipにするスクリプト
#!/bin/bash
pdf=$(echo $1|sed 's/.pdf//g')
# 変換
convert -density 150 -geometry 800x600 +antialias \
-rotate 90 -type GrayScale ${pdf}.pdf pdfpage_%02d.jpg
# 圧縮
zip ${pdf}.zip pdfpage_*.jpg
# 削除
rm pdfpage_*.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment