RGB to CMYK

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ggssdd

RGB to CMYK

Post by ggssdd »

My problem is that black point balance cannot be adjusted on same way. What I get is to bright image:
$imCommand="convert '".$this->backSrcUrl."' -colorspace CMYK -intent relative -black-point-compensation -profile '".$CMYKProfile."' '".$tmpBck."' ";
Also, after embedding a few of transformed images in pdf using pdfLib, Adobe acrobat reports that rendering intent is perceptual. It is also possible that I've missed some way in pdfLib to adjust that too... IM version is 6.3.2.9. running at suse 10…
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: RGB to CMYK

Post by magick »

ImageMagick supports black point compensation. Use the -black-point-compensation option.
ggssdd

Re: RGB to CMYK

Post by ggssdd »

But I did:
$imCommand="convert '".$this->backSrcUrl."' -colorspace CMYK -intent relative -black-point-compensation -profile '".$CMYKProfile."' '".$tmpBck."' ";
Maybe order of commands isn't good?
ggssdd

Re: RGB to CMYK

Post by ggssdd »

For
Post Reply