降低 epstopdf 產生的 pdf 的品質或轉換為其他影像格式(如 jpg)

降低 epstopdf 產生的 pdf 的品質或轉換為其他影像格式(如 jpg)

是否有一個包可以轉換 epstojpg 或其他一些低品質圖像格式,就像 epstopdf 可以轉換 pdf 一樣?

或者我可以在 epstopdf 上使用任何設定來降低影像質量,以便我可以獲得更快的 pdf 檔案嗎?

答案1

在 Windows 中,試試這個軟體:

  1. http://download.cnet.com/Free-EPS-To-JPG-Converter/3000-2192_4-76086793.html
  2. http://www.softpedia.com/get/Multimedia/Graphic/Image-Convertors/Free-EPS-To-JPG-Converter.shtml

在 Linux 中:(ubuntu)

安裝imagemagick:

sudo apt-get install imagemagick

然後,進行轉換:

convert foo.eps foo.jpg

調整大小:

convert -resize 1024X768 source.png dest.jpg

有關其他 Linux 版本或相關帖子的更多具體資訊:

  1. https://stackoverflow.com/search?q=eps+to+jpg
  2. http://ubuntuforums.org/showthread.php?t=1444695
  3. https://stackoverflow.com/questions/7583821/how-to-convert-a-eps-file-to-a-high-quality-1024x1024-jpg

相關內容