本文介绍了将pdf文件转换为tiff文件的最佳方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有大约1000个pdf文件,我需要将它们转换为300 dpi的tiff文件。做这个的最好方式是什么?如果存在可以编写脚本的SDK或其他工具或工具,那将是理想的。I have around 1000 pdf filesand I need to convert them to 300 dpi tiff files. What is the best way to do this? If there is an SDK or something or a tool that can be scripted that would be ideal.推荐答案使用Imagemagick,或者更好的是Ghostscript。Use Imagemagick, or better yet, Ghostscript. http://www.ibm.com/developerworks/library/l-graf2/# N101C2 有一个imagemagick示例:http://www.ibm.com/developerworks/library/l-graf2/#N101C2 has an example for imagemagick:convert foo.pdf pages-%03d.tiff http ://www.asmail.be/msg0055376363.html 有一个ghostscript示例:http://www.asmail.be/msg0055376363.html has an example for ghostscript:gs -q -dNOPAUSE -sDEVICE=tiffg4 -sOutputFile=a.tif foo.pdf -c quit我会安装ghostscript并阅读gs的手册页,了解需要哪些确切的选项并进行实验。I would install ghostscript and read the man page for gs to see what exact options are needed and experiment. 这篇关于将pdf文件转换为tiff文件的最佳方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 06-08 22:50