Thanks very much, snibgo.
A modified command of:
Code: Select all
convert 168032_apm_uc.psd -auto-orient -alpha transparent -clip -alpha opaque +clip -trim -density 120 -profile 'C:/icc/sRGB.icc' +profile 'xmp' -resize 800x800 168032_apm_uc.psd
...does indeed remove the interference pattern! However, it also seems to have introduced a loss of sharpness. See
example.
I thought it might be excessive jpg compression, so I set it to 92, and also threw in some manual sharpen.
Code: Select all
convert 168032_apm.psd -auto-orient -alpha transparent -clip -alpha opaque +clip -trim -density 1200 -profile 'C:/icc/sRGB.icc' +profile 'xmp' -resize 800x800 -unsharp 0x0.5 -quality 92 168032_SHARP92.jpg
See
example.
The result is a little better, but there is still a loss of sharpness when compared to the original. (I want to try and avoid the loss in the first place, rather than adding sharpen later.)
Compare to
Control file - desired outcome.
I would upload the source PSD, but it is 1.1Gb...
Any tips appreciated.
Thanks!