Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using a CMYK PSD without Photoshop

I have run into a common, yet difficult problem. I do not use Photoshop for image manipulation. Since all my work is web-based, GIMP does what I need in 99% of the situations. The problem is that I occasionally receive PSD files with CMYK encoding rather than RGB encoding. These files will not open in GIMP, nor will they convert in ImageMagick.

Has anyone found a good solution for converting CMYK files to RGB files (either PSD format or a flat format like PNG) that does not involve the use of Photoshop? Say a plug-in for GIMP or a standalone utility?

like image 421
64BitBob Avatar asked Oct 21 '08 18:10

64BitBob


People also ask

Can you use PSD files without Photoshop?

GIMP is a free, open source alternative to Photoshop. It can open PSD files and even preserves layer information. GIMP is the most powerful option on this list and will allow you to make other modifications to the file.

How do I open a CMYK File with PSD?

Open Office can actually import CMYK PSD files. Just right click on a PSD file and choose "Open With Other Application" and choose OpenOffice.org Drawing. (Assuming you are using GNOME.)

Can I open PSD file in Canva?

No. No, it is not. A PSD file is the native file format for the most used and most famous graphic design software, Adobe Photoshop. A PSD not only preserves image quality but preserves each layer for independent editing.


2 Answers

I just had luck with Imagemagick:

convert input.psd -colorspace rgb output.png 

It created a bunch of files named output-[0-9].png one for each layer. Good enough to start working with it on Gimp. When I tried to open those PSDs in Gimp 2.6 the message I got was:

Error loading PSD file: Unsupported color mode: CMYK 

I'm using Ubuntu Lucid's Imagemagick:

Version: ImageMagick 6.5.7-8 2009-11-26 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC Features: OpenMP 
like image 98
Jj. Avatar answered Sep 21 '22 18:09

Jj.


Assuming you have access to a Windows computer, freewares like IrfanView or XnView can open it and resave in whatever format you need too. XnView knows more formats, and has a NConvert command line version for this task, but IrfanView can do command line operations as well - I usually install both, preferring IrfanView's interface.

like image 22
PhiLho Avatar answered Sep 21 '22 18:09

PhiLho