Awesome
Jpegtran
Jpegtran provides Ruby interface to the jpegtran
tool.
Some examples follow: (for details, see module documentation)
require "jpegtran"
Jpegtran.available? # will return true (or false)
Jpegtran.optimize("foo.jpg", { :progressive => true, :optimize => true })
# will run 'jpegtran -progressive -optimize -outfile foo.jpg foo.jpg'
It can be also run asynchronously by non-blocking way (with eventmachine
)
simply by giving block to #optimize
. See documentation.
Unsupported Options
The -maxmemory N
option isn't supported.
Contributing
- Fork it.
- Create a branch (
git checkout -b 20101220-my-change
). - Commit your changes (
git commit -am "Added something"
). - Push to the branch (
git push origin 20101220-my-change
). - Create an Issue with a link to your branch.
- Enjoy a refreshing Diet Coke and wait.
Copyright
Copyright © 2011 Martin Kozák. See LICENSE.txt
for
further details.