Hello,
I want to tile an image or text against another image, I read on Anthony's site http://www.imagemagick.org/Usage/annotating/#wmark_text , but it's for command line, what's the associated command in magickwand php for tile?
thanks.
How to tile image/text ?
Re: How to tile image/text ?
Specifically:
convert -size 140x80 xc:none -fill grey \
-gravity NorthWest -draw "text 10,10 'Copyright'" \
-gravity SouthEast -draw "text 5,15 'Copyright'" \
miff:- |\
composite -tile - logo.jpg wmark_text_tiled.jpg
convert -size 140x80 xc:none -fill grey \
-gravity NorthWest -draw "text 10,10 'Copyright'" \
-gravity SouthEast -draw "text 5,15 'Copyright'" \
miff:- |\
composite -tile - logo.jpg wmark_text_tiled.jpg