Jump to content

Batch processing images to PPC resolution


Recommended Posts

Posted

Anyone know of an easier way to batch process images and changing resolutions.

Basically I have loads of holiday photo's that I want converted to PPC resolution. So instead of 100meg of photos I only have about 30meg and they still look the same.

I currently use paint shop pro for my manipulating. (You wouldn't think I have a degree in multimedia computing :lol: )

Michael

Guest kurtfhouse
Posted

Whenever I copy picture files to my JAM my PC asks me if I want them optimised for PPC automatically and the the pictures look great. AFAIK I don't have any additional software installed on my PC.

Guest MitchellO
Posted

I have never really transfered images to the PPC using activesync, only to an SD card using a card reader. Thanks for the tip!

Guest spindicator
Posted (edited)

for any lkinux users out there the imagemagick package does the business...

convert -scale 320x240

...so put it into a small bash script, something like...

#!/bin/bash

for file in `ls | grep -v ^_thb_`

do

echo CONVERTING: "$file"

convert -scale 320x240 "$file" "tmp_$file"

mv -f "tmp_$file" "$file"

done

Edited by spindicator

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.