Jump to content

[Resolved] Image size


Wairds

Recommended Posts

I have a number (100's) of images I want to load into a new shop. However I recognise the size, in Kb, will not make them web friendly. Is anybody aware of an image editor I can run them through to reduce the disc footprint without having to edit the dimensions of the image?

Thanks in anticipation.

Link to comment
Share on other sites

It's worth mentioning that if you run Linux you can do all these things pretty easily in the terminal.

I.E:

jpegoptim *.jpg -t --strip-all

 

find . -iname '*.jpg' -print0 |  xargs -0 jpegoptim --max=90 --strip-all --preserve --totals

or

find . -iname '*.png' -print0 | xargs -0 optipng -o7 -preserve

Takes care of all the jpg's or png's in a folder and its subs

Switching to Linux and discovering the terminal made my life a whole lot easier when working with tweaking and optimizing web related stuff

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...