Gimp-Forum.net

Full Version: creating multiple sized images from one
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi 

new here i am trying to find a way of resizing multiple png images of different sizes from one image
e.g.
28x28px
56X56px
112X112px

nathan
welcome to gimp-forum.net but first a question

Is this intended for a batch operation involving many images or is it just a one-click requirement for one image?

For one image (even for a batch) you might get someone to write you a script.

For lots of images, I might do lots of files one size at a time with the Gimp batch plugin BIMP.

edit: Inclined to recommend a command line application ImageMagick.

For a single file this works in windows

Code:
magick filename.png -resize 128x128 -write filename_128.png ^ -resize 56x56 -write filename_56.png ^ -resize 28x28 filename_28.png

of course that would have to be wrapped in a batch file for lots of images.

looks like this: http://i.imgur.com/QvPN7b2.jpg
thank you rich that was just what i needed you are awesome