Ghostscript convert PDF to JPG (CMYK profile) resolution error
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm using Ghostcript to convert some PDF files to JPG. All is working when converting the program consider the resolution of 600dpi when converting and output jpeg quality is good. Here is my code : gs -sDEVICE=jpegcmyk -dTextAlphaBits=4 -r600 -dSAFER -dBATCH -dNOPAUSE -o my_output_file.jpg my_input_file.pdf But when I open the file in Photoshop, the properties contains 72dpi instead of 600dpi I expected : When I try with RGB profile for output, it is ok, I have got 600dpi. So what I want is CMYK + 600dpi in image properties. 回答1: As can be