This is a simple script written in Python to compress images. Often, images aren't as small as they could be.
Smooshy.py solves this problem by allowing you to compress all of those nasty extra bytes away without all the usual confusion surrounding fiddling around in the Save for Web Photoshop dialog.
In fact, Smooshy is basically just a script which takes advantage of the awesome smush.it -- all your images are sent for compression over to smush.it -- so be careful you don't send something you want to keep ultra-private.
Smooshy creates backups of all your files while it's sprinkling its pixie dust over your images. If something goes wrong, your originals won't disappear into a black hole.
Also, if the resulting smooshed file is no smaller than the original, it won't be used.
cd <directory of your choice>
smooshy .
- Watch the magic.
smooshy <as many files or directories as you'd like to smush here>
- Watch the magic.
Of course, you can always use the classes and functions directly (I do this as part of a deployment script):
>>> from smooshy import smoosher
>>> smoosher.Smoosher(<file path).smoosh()
... # Smooshes the file
>>> smoosher.recursive_smoosher([<file or directory>... ])
... # Smooshes all files / all files recursively in directories
git clone [email protected]:obeattie/smooshy-py.git smooshy
cd smooshy
python setup.py install
- simplejson
- Python 2.5 or above (probably not Python 3, though)
This script is essentially a Python port of smusher -- I'm a Python guy so I hope you'll forgive me for making my own version :)
As with smusher, consider this code in the public domain, do whatever the hell you want with it (fork away :) but don't blame me for any mess caused by it.