Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
894 views
in Technique[技术] by (71.8m points)

linux - Embed ICC color profile in PDF

I am generating a PDF where all the graphics are drawn in DeviceRGB in the sRGB color space. I would like to convert the PDF into a different Color Profile using an ICC profile and embed the ICC profile, but I can't find a good tool to do this.

I have tried ImageMagick, but that rasterizes the PDF which is undesirable, and I have tried using Ghostscript. But while that converts the colors, it doesn't embed the ICC profile.

Is there any tool or library (preferably Java or Scala) available for Linux that does what I want?

The Ghostscript commands I have tried are:

gs -o cmyk.pdf -sColorConversionStrategy=CMYK -sDEVICE=pdfwrite 
   -dOverrideICC=true -sOutputICCProfile=CoatedFOGRA27.icc 
   -dRenderIntent=3 in.pdf

and

gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -ColorConversionStrategy=CMYK 
   -dProcessColorModel=/DeviceCMYK -sOutputICCProfile=CoatedFOGRA27.icc 
   -sOutputFile=cmyk.pdf in.pdf 

and several variations of the above. I have tried both Ghostscript version 9.10 and 9.16.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use Ghostscript v9.16 or higher:

Read its documentation about ICC color profile support, available here:

Here's a possible command to convert the color space and embed the ICC profile:

gs -o cmyk-doc.pdf      
   -sDEVICE=pdfwrite    
   -dOverrideICC=true   
   -sDefaultCMYKProfile=/path/to/mycmykprofile.icc 
   -sOutputICCProfile=/path/to/mydeviceprofile.icc 
   -dRenderIntent=3     
   -dDeviceGrayToK=true 
    input-doc.pdf

(-dRenderIntent : possible arguments are 0 (Perceptual), 1 (Colorimetric), 2 (Saturation), and 3 (Absolute Colorimetric).)

Caveats

If you look at a PDF file on screen (or on paper, when printed) converted with above command and use a:

  • non-calibrated monitor/screen;
  • non-calibrated print device;
  • non-calibrated room illumination; or
  • PDF reader which cannot handle embedded ICC profiles, then

you may be disappointed. Using the wrong ICC profile or paper type that does not match the one expected by the output profile can also lead to issues.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...