Page 1 of 1

How do I convert PSD to jpg?

Posted: 2018-04-02T04:07:57-07:00
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?

Re: How do I convert PSD to jpg?

Posted: 2018-04-02T04:20:05-07:00
by Bonzo
What code are you using? What version are you using?

Re: How do I convert PSD to jpg?

Posted: 2018-04-02T10:00:58-07:00
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.