How do I convert PSD to jpg?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
centerpointcaugiay
Posts: 1
Joined: 2018-04-01T09:09:09-07:00
Authentication code: 1152

How do I convert PSD to jpg?

Post by centerpointcaugiay »

How do I convert a duotone psd. to a jpg.
Tutorials I see say type in jpg in the name but that is not working?
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: How do I convert PSD to jpg?

Post by Bonzo »

What code are you using? What version are you using?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: How do I convert PSD to jpg?

Post by fmw42 »

Please, always provide your IM version and platform when asking questions, since syntax may differ. Also provide your exact command line and if possible your images.

See the top-most post in this forum "IMPORTANT: Please Read This FIRST Before Posting" at http://www.imagemagick.org/discourse-se ... f=1&t=9620

For novices, see

http://www.imagemagick.org/discourse-se ... f=1&t=9620
http://www.imagemagick.org/script/comma ... essing.php
http://www.imagemagick.org/Usage/reference.html
http://www.imagemagick.org/Usage/
https://github.com/ImageMagick/usage-markdown

To convert a simple PSD file to JPG, you can do

Code: Select all

convert image.psd[0] -background white -flatten output.jpg
the [0] means take the first layer of the PSD, which is usually the flattened layer.

-background white -flatten can be removed if your PSD has no transparency; otherwise, this would make the background white.
Post Reply