ruby-chunky-png 1.2.0-1 source package in Ubuntu

Changelog

ruby-chunky-png (1.2.0-1) unstable; urgency=low

  * Initial release.
    Closes: bug#632610.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  17 Oct 2011 13:14:50 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Precise
Original maintainer:
Jonas Smedegaard
Architectures:
all
Section:
ruby
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
ruby-chunky-png_1.2.0.orig.tar.gz 303.2 KiB 821a707cc418fbe973825a823400bf296fb3399d2dc348e9aa4f96f16be55073
ruby-chunky-png_1.2.0-1.debian.tar.gz 6.1 KiB 2ac670f58bfced41ac4924fc2ed8df7a9214413c641b7c5b64eeb81e13bfcff5
ruby-chunky-png_1.2.0-1.dsc 1.9 KiB fe2e9bd7f8b4e7e825176642b7adf38ca29f9f61cef18d3a2b2bcae56c763223

View changes file

Binary packages built by this source

ruby-chunky-png: pure ruby library for read/write, chunk-level access to PNG files

 This pure Ruby library can read and write PNG images without depending
 on an external image library, like RMagick. It tries to be memory
 efficient and reasonably fast.
 .
 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.