Search found 5 matches

by string_theorist
2013-05-02T23:22:17-07:00
Forum: Users
Topic: Captioning existing images
Replies: 1
Views: 2122

Captioning existing images

This is obviously a simple, amateur question, but I have failed in solving. I have existing images that needs text to be inserted as captions. I am writing in Batch. for /F "tokens=1-4 DELIMS=#" %%n in ('type %textSourcePath%') do if "%%n"==" " ( %imageMagickPath%\convert.exe "%imageSourcePath%\%%o ...
by string_theorist
2013-04-30T22:55:39-07:00
Forum: Users
Topic: Write to multiple destination paths
Replies: 5
Views: 3473

Re: Write to multiple destination paths

Sweet! Thanks for your help. Solved :D
by string_theorist
2013-04-30T07:49:15-07:00
Forum: Users
Topic: Write to multiple destination paths
Replies: 5
Views: 3473

Re: Write to multiple destination paths

ok, so i tried the above mentioned suggestion. this is the code: %imageMagickPath%\convert.exe -background blue -font C:\Windows\Fonts\ebrimabd.ttf -fill white -strokewidth 2 -stroke black -pointsize 40 -size 640X480 -gravity South caption:"%%o\n%%p" -write "%backUpDestPathUNC%\DSC00%%q.jpg" -write ...
by string_theorist
2013-04-30T04:41:01-07:00
Forum: Users
Topic: Write to multiple destination paths
Replies: 5
Views: 3473

Re: Write to multiple destination paths

Thanks for your reply! That helps a lot.

Cheers!
by string_theorist
2013-04-30T02:58:26-07:00
Forum: Users
Topic: Write to multiple destination paths
Replies: 5
Views: 3473

Write to multiple destination paths

Hello,

Is there a way to create one image using convert.exe, in multiple destinations?

I am using the latest build, running through a batch script on Windows 7.

Thanks for your help.