creating multiple sized images from one - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: General questions (https://www.gimp-forum.net/Forum-General-questions) +--- Thread: creating multiple sized images from one (/Thread-creating-multiple-sized-images-from-one) |
creating multiple sized images from one - ntuck86 - 08-03-2017 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 RE: creating multiple sized images from one - rich2005 - 08-03-2017 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 RE: creating multiple sized images from one - ntuck86 - 08-06-2017 thank you rich that was just what i needed you are awesome |