Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Adding copyright text to photo's

1 view
Skip to first unread message

Nick Bruton

unread,
Nov 28, 2003, 7:17:45 AM11/28/03
to
Hi,

Does anyone know a way to add copyright text to a load of jpg files?

Thanks Nick

Joseph Haig

unread,
Nov 28, 2003, 7:40:07 AM11/28/03
to
Nick Bruton wrote:

ImageMagick can probably do what you want. In particular, look at "man
composite". I haven't tried it myself but I think what you want to do is
create an image containing the text and then use composite to add it to all
the images:

$ for FILE in *.jpg
> do
> composite $FILE copywrite.jpg NEW$FILE
> done

NB, I have NOT tried this, so I do not know how this will turn out. You
should read the man page before trying it.

fernando

unread,
Dec 1, 2003, 4:31:47 AM12/1/03
to

for i in *
do
mogrify -fill white -draw 'text 20,20 "Text Come Here"' $i
done


--
--------------------------------------
These are my personal opinions
Real email: sanabriaf at yahoo dot com

0 new messages