Conversion of EPS to PDF or Tiff does not maintain transparency

一世执手 提交于 2019-12-12 02:26:43

问题


I am trying to convert eps file to pdf file or tiff file using ghostscript but having issues keeping it transparent. When I convert it to png, transparency is maintained but I need to have pdf or tiff for printing purpose. To convert it to PDF, I am using below Arguments:

For PDF

-dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dEPSCrop -sOutputFile=C:\temp\test.pdf
C:\temp\test.eps;

For Tiff

-dNOPAUSE -dBATCH -sDEVICE=tiff32nc -r300 -dEPSCrop -sOutputFile=C:\temp\test.tiff
C:\temp\test.eps;

is there something I am missing or is it not possible to maintain transparancy?


回答1:


EPS cannot contain transparency, its not part of the standard, so I don't really see how it can fail to 'maintain' it....



来源:https://stackoverflow.com/questions/8396506/conversion-of-eps-to-pdf-or-tiff-does-not-maintain-transparency

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!