I tried searching for this topic but it appears I get an error saying that the database is too large to do such a search so here I am.
What is the best and hopefully, free, program that optimizes photos for the web? Is there the possibility of doing it in bulk?
Thanks in advance for any help.
Posts: 27300
A free program that optimizes photos for the web
Moved to correct forum.
Posts: 6
I can google with the best of them. I was hoping for people's opinion on what works best for them.
Posts: 15
What exactly do you mean by "optimizes photos for the web"? If you get along with resizing and adjusting brightness, saturation, contrast ... you could use Irfanview which is a really great application for free. It does a great job in mass auto conversions. If you need the possibility of manipulating the image content you definitely need something else.
--
serving bits since ever!
Posts: 1
Well, if you have photoshop, there is an option to save your image for the web. It is under the File menu, then select save for the web, and then choose the settings you want to use. You can convert the file to .jpg, or .gif, as well as png. Though, I don't know about thing outside of photoshop.
Posts: 14
The script that I run on a fresh-from-the-camera folder of images before uploading them to my site is as follows:
This makes a subfolder. Then uses ImageMagick to resize all the images (3000x2000 from the camera) to 1280x960, jpeg quality 80, while copying them into the new folder. jhead is used to copy the EXIF data (lost by ImageMagick ) from the source files to the new ones. And finally I use exifautotran (which calls exiforient and jpegtran) to rotate the photo depending on the orientation of my camera when I took it, which means some of the final images are 960x1280, hence the folder named 1280x1280.
Then I upload them all to the site and let it work its magic. It keeps the 1280x1280 80% version as the highest quality, and resizes down to 640x640 80% (primary) and 128x128 ??% (thumbnail).
Posts: 32509
newer imagemagick versions don't lose the exif data. you need to specify -strip if you want to remove metadata.
thus the 2nd step shouldn't be necessary.