Based on samples found on the site, I'm able to reflect a source image, and then merge that with another image to act as a background. I'm having to first create the reflected image using ...
Code: Select all
convert source.png -adaptive-resize 277x350! -alpha on -virtual-pixel transparent -filter point \
\( +clone -flip \
-size 277x80 gradient:gray30-black\
alpha off -compose CopyOpacity -composite \
\) -append \
+distort Perspective '0,0 37,43 0,277 37,212 277,350 199,281 350,0 259,18' \
-gravity North -crop 277x350+53-0\! \
-background transparent -compose Over -flatten generated.png
Code: Select all
composite generated.png background.png output.png
Thanks in advance for any guidance or suggestions.