ruby-chunky-png 1.3.15-2 source package in Ubuntu

Changelog

ruby-chunky-png (1.3.15-2) unstable; urgency=medium

  * d/control (Depends, Build-Depends): Remove ruby-sorted-set. This has
    already been fixed by release 1.3.15.

 -- Daniel Leidert <email address hidden>  Sat, 06 Nov 2021 23:22:17 +0100

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
ruby
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe ruby
Noble release universe ruby
Mantic release universe ruby
Lunar release universe ruby
Jammy release universe ruby

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-chunky-png_1.3.15-2.dsc 2.0 KiB 13f7338b25c56dba3593287578523be47e75c543a59a765144644e9b2ee8b937
ruby-chunky-png_1.3.15.orig.tar.gz 347.4 KiB 814a0e1f62615af87acb5c35f2d5725fe674b84de8761f6d6a38cc1f7214694e
ruby-chunky-png_1.3.15-2.debian.tar.xz 5.3 KiB 22d725dd040b7252e0b55ef976f7355b10bc0712cff250ef36464ead54ec8114

Available diffs

No changes file available.

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.