16bit Photoshop PSD watermarking
Posted: 2018-12-10T11:19:29-07:00
Version: ImageMagick 7.0.8-15 Q16 x86_64 2018-12-07 https://imagemagick.org
Hello, i am still working with this code to watermark images and ran into a 16bit PSD image. The image that ImageMagick makes is "scrambled" for lack of a better term. Is there something i need to do to get convert to work with 16bit PSDs?
16bit PSD (warning 400meg file size):
https://www.dropbox.com/s/ch45qhhg3mlls ... 5.PSD?dl=0
watermark PNG:
https://www.dropbox.com/s/h9alumw198zep ... k.png?dl=0
Thanks!
Hello, i am still working with this code to watermark images and ran into a 16bit PSD image. The image that ImageMagick makes is "scrambled" for lack of a better term. Is there something i need to do to get convert to work with 16bit PSDs?
Code: Select all
dim=`20181205.PSD[0] -format "%wx%h" info:`
convert \( 20181205.PSD[0] -background white -flatten \) \
\( -clone 0 -fill "gray(10%)" -colorize 50 \) \
\( watermark.png -alpha extract -auto-level \
-write mpr:tile +delete -size $dim tile:mpr:tile \) \
-alpha off -compose over -composite \
20181205_watermarked.PSD
https://www.dropbox.com/s/ch45qhhg3mlls ... 5.PSD?dl=0
watermark PNG:
https://www.dropbox.com/s/h9alumw198zep ... k.png?dl=0
Thanks!