2012. 1. 15. 08:47 아이폰/참고
출처 : http://blog.naver.com/huper77?Redirect=Log&logNo=140051669648
http://www.medicalnerds.com/batch-converting-pdf-to-jpgjpeg-using-free-software/

ImageMagick은 MacTeX

convert -density 300 file.pdf file.jpg

이렇게 하면 file1, file2, 뭐 이런식으로 뒤에 숫자붙여가며 모든 페이지를 바꿔준다.


To convert more than one file, one can use wildcards, such as *.jpg, but I prefer to use bash scripting (the default shell in Mac OS X) to batch convert files as it can preserve output filenames:


for i in `ls *.pdf`; do convert -density 300 "$i" "$i".jpg; done

And that’s it. You should end up with a directory of converted PDFs, suitable for inclusion into any Microsoft application!


이런 말씀도 하시네. 배치로 하면 좋긴 하겠다. 그리고 이왕이면 1,2, 이렇게 말고 01,02로 하면 좋겠다. 그래야 pda에서 만뷰로 볼 때 소팅이 잘 돼 ㅋㅋ



참고로 -monitor 하면 진행상황을 볼 수 있다. 그리고 위의 density 300은 너무 사이즈가 커진다는 단점이 있음~~ 150정도면 어떨까 싶네 (논문을 아무 옵션 없이 변환하니 글씨가 안보일 지경).


convert -density 150 -monitor file.pdf file.jpg

posted by townone