Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
creating multiple sized images from one
#1
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
Reply
#2
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
Reply
#3
thank you rich that was just what i needed you are awesome
Reply


Forum Jump: