From 0deb23243727fe3ed7d2503e562c02b987e8afa9 Mon Sep 17 00:00:00 2001 From: Jonathan Wright Date: Mon, 4 Jan 2010 21:20:59 +1300 Subject: [PATCH] Pngnq 1.0 Pngnq quantizes 24-bit (RGB) and 32-bit (RGBA) PNG images down to 8-bit (palette) PNG8 images. http://pngnq.sourceforge.net/ See http://www.sitepoint.com/blogs/2007/09/18/png8-the-clear-winner/ for one motivation on using PNG8 images (IE6 support). Another motiviation is that PNG8 images are smaller and do a good job of lossy compression of screen shots. --- Formula/pngnq.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Formula/pngnq.rb diff --git a/Formula/pngnq.rb b/Formula/pngnq.rb new file mode 100644 index 00000000000..8ceb99b31d4 --- /dev/null +++ b/Formula/pngnq.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Pngnq