Search found 7 matches

by New
2013-05-18T13:18:46-07:00
Forum: Users
Topic: Watermark all images in sub folders
Replies: 30
Views: 47324

Re: Watermark all images in sub folders

Thank you, its working now.

Could you tell me how can i use mogrify instead of convert?
by New
2013-05-17T16:50:56-07:00
Forum: Users
Topic: Watermark all images in sub folders
Replies: 30
Views: 47324

Re: Watermark all images in sub folders

Thank you for reply.

I still get error

convert: missing an image filename `*.jpg' @ error/convert.c/ConvertImageCommand/3011.


Do you have ideas or alternative solutions for watermarking all images in sub folderds?
by New
2013-05-17T15:03:40-07:00
Forum: Users
Topic: Watermark all images in sub folders
Replies: 30
Views: 47324

Re: Watermark all images in sub folders

f you want to use "convert" rather than "mogrify", then instead of convert ... *.jpg use for file in *.jpg do convert ... $file done Thank you for reply but i am not sure if i putted this part correct. cd list=`find /home/ovo/Desktop/Nesto/102204004 -type d` for directory in $li...
by New
2013-05-17T05:57:31-07:00
Forum: Users
Topic: Watermark all images in sub folders
Replies: 30
Views: 47324

Re: Watermark all images in sub folders

A script file needs to know what shell to use, typically it should be #!/bin/bash cd list=`find /home/username/Desktop/folder1/folder2 -type d` for directory in $list; do cd $directory mogrify -format jpg \ -draw 'gravity south image src-over 0,100 250,250 "/home/username/Desktop/folder1/logon...
by New
2013-05-16T14:12:27-07:00
Forum: Users
Topic: Watermark all images in sub folders
Replies: 30
Views: 47324

Re: Watermark all images in sub folders

I will now explain in steps what i did. 1.I open gedit and past script. 2. Edit it cd list=`find /home/username/Desktop/folder1/folder2 -type d` for directory in $list; do cd $directory mogrify -format jpg \ -draw 'gravity south image src-over 0,100 250,250 "/home/username/Desktop/folder1/logon...
by New
2013-05-16T01:25:37-07:00
Forum: Users
Topic: Watermark all images in sub folders
Replies: 30
Views: 47324

Re: Watermark all images in sub folders

Thank you guys for reply. cd list=`find /Users/fred/phillipt18 -type d` for directory in $list; do cd $directory mogrify -format jpg -matte \ -draw 'gravity south image src-over 0,100 250,250 "/Users/fred/phillipt18_igra_logo_trans_500px_0p5.png"' *.jpg cd done cd -- changes directory to y...
by New
2013-05-15T13:44:15-07:00
Forum: Users
Topic: Watermark all images in sub folders
Replies: 30
Views: 47324

Watermark all images in sub folders

Hello i have many sub folders, first part over 200 folders. I would like to watermark them. I know to watermark one by one with this command: composite -gravity center castle.gif frame.gif castle_button.gif from http://www.imagemagick.org/Usage/annotating/#overlay I would like to use script which wi...