I am using a script that obtains the C,M,Y and K channel means from an RGB image. The command I am using to convert the image is shown below:
Code: Select all
convert -verbose "source.jpg" -profile "sRGB_v4_ICC_preference.icc" -profile "Photoshop5DefaultCMYK.icc" "cmyk.a.jpg"
I then read the C,M,Y and K channel means using the command:convert: delegate library support not built-in `source.jpg' (LCMS) @ warning/profile.c/ProfileImage/945.
Code: Select all
identify -format "%[fx:mean.c]\n%[fx:mean.m]\n%[fx:mean.y]\n%[fx:mean.k]" "cmyk.a.jpg"
Please let me know what I need to do to fix this with the host. I spent about an hour searching through the forum and found this relevant topic (viewtopic.php?f=3&t=14959), but didn't know what to recommend the server support team to do?0.091312
0.26802
0.338747
nan
Thanks!