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?
How do I convert PSD to jpg?
-
- Posts: 1
- Joined: 2018-04-01T09:09:09-07:00
- Authentication code: 1152
Re: How do I convert PSD to jpg?
What code are you using? What version are you using?
- 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?
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
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.
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
-background white -flatten can be removed if your PSD has no transparency; otherwise, this would make the background white.