Re: composite one image over lots of PSD's
Posted: 2018-09-13T11:57:27-07:00
Thank you for the help Fred. in the code below, it does remove the meta. and also removed the Clipping paths from the PSD's. is there an easy way to retain that info?
Code: Select all
list=`ls | egrep ".psd"`
for img in $list; do
echo "$img"
magick $img \
\( -clone 0 -alpha off -fill black -colorize 75% \) \
\( -clone 0 -alpha transparent -gravity center -pointsize 900 \
-fill red -annotate +0+20 "Ultrafina" \) \
\( -clone 1--1 -flatten \) \
-swap 0,-1 +delete \
/Users/flieckb/Desktop/Out/$img
done