Watermark Text Tile
Posted: 2011-09-29T08:03:42-07:00
Hi,
I have the follow bat file which overlays some text on all bitmaps in a folder.
Can anyone tell me how to use the tile command to tile the text accross the image instead of giving it a load of defined positions
Here's my code
Thanks
I have the follow bat file which overlays some text on all bitmaps in a folder.
Can anyone tell me how to use the tile command to tile the text accross the image instead of giving it a load of defined positions
Here's my code
Code: Select all
for %%f in (%1\*.bmp)
do
( convert "%%f" -pointsize 18 -fill black ^ -gravity northwest -annotate +0+0"WATERMARK" "%2\%%~nf.png" )