Created
January 22, 2012 03:19
-
-
Save dutygeeks/1655310 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Optipng < Nanoc3::Filter | |
identifier :optipng | |
type :binary | |
def run(filename, params={}) | |
system( | |
'optipng', | |
'-quiet', | |
'-o', params[:level].to_s, | |
filename, | |
'-out', output_filename | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
require
brew install optipng