plug-ins: fix incorrect CMYK transform for the variant without alpha
Probably due to a copy-paste error the case without alpha was also using the img->cmyk_transform_alpha instead of img->cmyk_transform.
This commit is contained in:
@ -1412,7 +1412,7 @@ psd_convert_cmyk_to_srgb (PSDimage *img_a,
|
||||
g_object_unref (srgb);
|
||||
}
|
||||
|
||||
gimp_color_transform_process_pixels (img_a->cmyk_transform_alpha,
|
||||
gimp_color_transform_process_pixels (img_a->cmyk_transform,
|
||||
babl_format ("cmyk u8"),
|
||||
src,
|
||||
babl_format ("R'G'B' float"),
|
||||
|
Reference in New Issue
Block a user