Search found 6 matches

by Nops
2013-05-04T09:56:09-07:00
Forum: Users
Topic: Border with and font size in percent
Replies: 12
Views: 9931

Re: Border with and font size in percent

Imagemagick is great. I look forward for v7. Is the photoshop for dos xD
I work often with batch files and imagemagick is perfect for this. I know, a lot of programming time is in it, and its for free.
Thanks for this.

But another little question:

Can convert manipulate the output filename like ...
by Nops
2013-05-02T11:03:10-07:00
Forum: Users
Topic: Border with and font size in percent
Replies: 12
Views: 9931

Re: Border with and font size in percent

...South -font "AR-BERKLEY" -pointsize %fsize% ...

(Without the Backspace)
by Nops
2013-05-02T11:01:28-07:00
Forum: Users
Topic: Border with and font size in percent
Replies: 12
Views: 9931

Re: Border with and font size in percent

This one works:

@echo off
@echo Beschriftungstext:
set /p beschr=

FOR /F %%i IN ('identify -format "%%[fx:min(w,h)*0.05]" %1') DO SET psize=%%i
FOR /F %%j IN ('identify -format "%%[fx:min(w,h)*0.04]" %1') DO SET fsize=%%j
set neu=%1
set alle=%*
FOR %%a IN (%alle%) DO convert -bordercolor white ...
by Nops
2013-05-02T10:01:07-07:00
Forum: Users
Topic: Border with and font size in percent
Replies: 12
Views: 9931

Re: Border with and font size in percent

Hello

Thanks a lot for your response.
Imagemagick cannot do this job itself? Hmm the programmers should add this, i think this feature most people wo work with pictures with different Resolutions 8) - Also for watermarks with pictures have different resolution.

I try the method with the formulars ...
by Nops
2013-05-01T13:31:40-07:00
Forum: Users
Topic: Border with and font size in percent
Replies: 12
Views: 9931

Re: Border with and font size in percent

Sorry, i forget.

I use Windows 7 and ImageMagick 6.8.5-3 2013-04-27 Q16

Thanks
by Nops
2013-05-01T13:28:19-07:00
Forum: Users
Topic: Border with and font size in percent
Replies: 12
Views: 9931

Border with and font size in percent

Hello,

I have a problem. I created a little script to make a frame to my pictures and a label.


@echo off
@echo Beschriftungstext:
set /p beschr=

set neu=%1
set alle=%*
FOR %%a IN (%alle%) DO convert -bordercolor white -border 1 -bordercolor black -border 25%x25% -gravity South -font "AR-BERKLEY ...