summaryrefslogtreecommitdiff
path: root/graphics/ruby-chunky_png
AgeCommit message (Collapse)AuthorFilesLines
2013-01-14Update ruby-chunky_png to 1.2.7.taca2-6/+6
Exact changes aren't available. * Fix a small problem with 4bit resampling code.
2012-09-16Update ruby-chunky_png to 1.2.6.taca2-6/+6
Changes are unavailable.
2011-12-15Update ruby-chunky_png pacakge to 1.2.5.taca2-6/+6
Changes are unknown.
2011-09-15Update ruby-chunky_png package to 1.2.4.taca3-7/+9
* Added Canvas.from_data_url to import an canvas from a PNG data URL.
2011-09-14Update ruby-chunky_png package to 1.2.3.taca3-7/+9
* Added data URL exporting. * A few bug fixes.
2011-08-12Update graphics/ruby-chunky_png package to 1.2.1.taca3-7/+11
Changes are unknown.
2011-06-19Importing ruby-chunky_png version 1.2.0. It is required by newer versiontaca4-0/+353
of www/ruby-compass. = Chunky PNG This library can read and write PNG files. It is written in pure Ruby for maximum portability. Let me rephrase: it does NOT require RMagick or any other memory leaking image library. == Features * Decodes any image that the PNG standard allows. This includes all standard color modes, all bit depths and all transparency, interlacing and filtering options. * Encodes images supports all color modes (true color, grayscale and indexed) and transparency for all these color modes. The best color mode will be chosen automatically, based on the amount of used colors. * R/W access to the image's pixels. * R/W access to all image metadata that is stored in chunks. * Memory efficient (uses a Fixnum, i.e. 4 or 8 bytes of memory per pixel, depending on the hardware) * Reasonably fast for Ruby standards, by only using integer math and a highly optimized saving routine. * Interoperability with RMagick if you really have to. Also, have a look at OilyPNG at http://github.com/wvanbergen/oily_png. OilyPNG is a mixin module that implements some of the ChunkyPNG algorithms in C, which provides a massive speed boost to encoding and decoding.