Search found 3 matches

by Jozef
Mon Dec 10, 2007 4:59 pm
Forum: NConvert
Topic: Batch canvas resize in %
Replies: 4
Views: 2674

A lot of thanks, everything works now fine.
by Jozef
Mon Dec 10, 2007 10:06 am
Forum: NConvert
Topic: Batch canvas resize in %
Replies: 4
Views: 2674

Re: Batch canvas resize in %

Yes indeed, I forgot to use pos center.

New code:

Code: Select all

FOR %%f IN (*.jpg) DO nconvert -canvas 103% 103% center -bgcolor 255 255 255 %%f 
The code with center now gives the error: Bad position '-bgcolor'
by Jozef
Sun Dec 09, 2007 5:19 pm
Forum: NConvert
Topic: Batch canvas resize in %
Replies: 4
Views: 2674

Batch canvas resize in %

I would like to resize the canvas of my images in %

My batch code and command is:
FOR %%f IN (*.jpg) DO nconvert -canvas 103% 103% -bgcolor 255 255 255 %%f

However, I receive the error: Bad position '255'

Replacing the -bgcolor 255 255 255 code gives an other error.

What am I doing wrong?