Comment 5 for bug 93811

Revision history for this message
udifuchs (udifuchs) wrote :

It seems like a problem with lcms-1.16. The following patch to ufraw_developer.c might solve the problem:

                prof[i++] = d->saturationProfile;
            prof[i++] = d->profile[1];
            d->colorTransform = cmsCreateMultiprofileTransform(prof, i,
- TYPE_RGB_16, TYPE_RGB_16, d->intent, 0);
+ TYPE_RGB_16, NOCOLORSPACECHECK(TYPE_RGB_16), d->intent, 0);
        }
     }
 }

Udi