Hi,

I tried using jpegicc for softproof and had no success with tho following:

jpegicc -m3 -p cmyk.icc sRGB.jpeg sRGB_softproof.jpeg


You are right. There is a bug in jpegicc that prevents softproofing. Thanks for let me know.

Here is a fixup:

File jpegicc:

  hProof = NULL;
    if (cProofing != NULL) {

     hProof = OpenStockProfile(cProofing);
    }
   }

Replace by:

  hProof = NULL;
    if (cProofing != NULL) {

     hProof = OpenStockProfile(cProofing);
     dwFlags |= cmsFLAGS_SOFTPROOFING;
    }
   }


I'm adding it to master sources.

Regards
Marti Maria
The littleCMS project
http://www.littlecms.com




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
Lcms-user mailing list
Lcms-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/lcms-user

Reply via email to