Search found 4 matches

by TwoXfour
2012-04-17T17:04:39-07:00
Forum: Users
Topic: Batch script to create multiple sizes of one image
Replies: 6
Views: 13990

Re: Batch script to create multiple sizes of one image

Cheers Anthony, that's the one!
Thanks for everyone's input.
by TwoXfour
2012-04-17T14:55:28-07:00
Forum: Users
Topic: Batch script to create multiple sizes of one image
Replies: 6
Views: 13990

Re: Batch script to create multiple sizes of one image

I have encountered a slight hiccup though... :D
When run from cmd, it works as expected, but executed as a .bat from explorer, it give me... Invalid Parameter - -set

Any ideas?

@ECHO OFF
::Batch resize image to common sizes

convert In\* ^
-set filename:fname "%%f" ^
( -clone 0 -resize ...
by TwoXfour
2012-04-17T10:22:34-07:00
Forum: Users
Topic: Batch script to create multiple sizes of one image
Replies: 6
Views: 13990

Re: Batch script to create multiple sizes of one image

Excellent, got it working, thank you for your help :)
by TwoXfour
2012-04-17T09:39:28-07:00
Forum: Users
Topic: Batch script to create multiple sizes of one image
Replies: 6
Views: 13990

Batch script to create multiple sizes of one image

Hi guys, I've had a good look at some examples and the references, but its a bit of a steep learning curve, and I was hoping for a bit of help with a .bat for Windows.

I'd like to resize an image in a folder to multiple sizes if possible.
Assume I have a couple of .png images over 2000px square in ...