Hey,
I have a directory full of images that I would like to resize to around 60% of their original size.
How would I go about doing this? Can be in either Python or Perl
Cheers
Eef
|
1
|
|||||||
|
|
|
How about using mogrify, part of ImageMagick? If you really need to control this from Perl, then you could use Image::Magick, Image::Resize or Imager. |
||
|
|
|
|
Can it be in shell?
If you have > 1 core, you can do it like this:
-P3 means that you want to resize up to 3 images at the same time (parallelization). If you don't need to keep originals you can use mogrify, but I prefer to use convert, and then rm ...; mv ... - just to be on safe side if resizing would (for whatever reason) fail. |
||
|
|
|
|
Use PerlMagick, it's an interface to the popular ImageMagick suite of command line tools to do just this kind of stuff. PythonMagic is available as well. |
||
|
|
|
|
If you want to do it programatically, which I assume is the case, use PIL to resize e.g.
then save it to same file or a new location. Go through the folder recursively and apply resize function to all images. I have come up with a sample script which I think will work for you. You can improve on it: Maybe make it graphical, add more options e.g. same extension or may be all png, resize sampling linear/bilinear etc
|
|||
|
|
|
|
I use Python with PIL (Python Image Library). Of course there are specialized programs to do this. Many people use PIL to such things. Look at: Quick image resizing with python PIL is very powerful and recently I have found this recipe: Putting watermark to images in batch |
|||
|
|
|
|
do you need to just resize it or you want to resize programmatically? If just resize use PixResizer. http://bluefive.pair.com/pixresizer.htm |
||
|
|