The bad behavior is that the alpha channel is displayed in the JPG, here shown as the word "ALPHA".
PSD to JPG in PS: in IM:
Code: Select all
magick <input-file>[0] -intent relative -sample -quality 95 -colorspace sRGB -strip
Code: Select all
magick <input-file>[0] -intent relative -sample -quality 95 -colorspace sRGB -strip
Code: Select all
magick <input-file>[0] -alpha off -intent relative -sample -quality 95 -colorspace sRGB -strip <output-file>
Code: Select all
magick Alpha_Example.psd[0] -alpha off -intent relative -quality 95 -colorspace sRGB -strip Alpha_Example.jpg
Code: Select all
magick -define psd:alpha-unblend=off Alpha_Example.psd[0] result.jpg