Converting CMYK JPG to RGB JPG

21 views (last 30 days)
Jacob Mevorach
Jacob Mevorach on 31 Mar 2017
So if I detect a CMYK image I have a script written that attempts to convert the image to an RGB image so I can use imread on it (CMYK is not supported by imread for jpgs) and then tries to sharpen the image and convert it to black and white. Unfortunately the way I'm using applycform is not working and I keep getting an error that says "Cform structure is invalid for Named Color". Does anyone know anyway I might be able to resolve this or convert detect CMYK images to RGB images? All the Best!
inprof = iccread('USSheetfedCoated.icc');
outprof = iccread('sRGB.icm');
C = makecform('icc',inprof,outprof);
for i=1:numFiles2
info=imfinfo(fullfile(workingDirectory,imageFiles2(i).name));
if info.ColorType == 'CMYK'
fullfile(workingDirectory,imageFiles2(i).name) = applycform(fullfile(workingDirectory,imageFiles2(i).name),C);
end
frame = imread(fullfile(workingDirectory,imageFiles2(i).name));
frame = imsharpen(frame);
gray = rgb2gray(frame);
imwrite(gray,imageFiles2(i).name);
end

Accepted Answer

Carl
Carl on 3 Apr 2017
Edited: Carl on 3 Apr 2017
Hi Jacob, the first input to the 'applycform' function needs to be a matrix of the image data, rather than the path to the file itself. You are passing in a character vector for that argument, so the function assumes that you are using a named color profile, and errors out accordingly since the encoding 'C' from 'makecform' does not match.
Since 'imread' does not support CMYK JPG files in the first place, this puts us in a tricky situation. What you really need to do, is perform the conversion before being able to work with it at all in MATLAB. There are third-party tools that would allow you to do this conversion.
  6 Comments
Soan Duong
Soan Duong on 14 Aug 2018
Hi @Image Analyst, I used the imfinfo() function to read the information of my image. The ColorType is CMYK.
Besides, when I read the image by imread() function, and I got an error of JPEG images with CMYK colorspace are not currently supported.
The two reasons make me think the image is CMYK. I just receive images and do not know what program created them.
Abdurrahman Tosun
Abdurrahman Tosun on 5 Oct 2019
it is very easy to save this position. save to your image at paint program, after that convert to jpeg again by using paint program :) if this save you please let me know

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!