File: control

package info (click to toggle)
ruby-chunky-png 1.3.8-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,132 kB
  • sloc: ruby: 4,392; makefile: 23
file content (44 lines) | stat: -rw-r--r-- 1,698 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Source: ruby-chunky-png
Section: ruby
Priority: optional
Maintainer: Debian Sass team <pkg-sass-devel@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
Build-Depends: cdbs (>= 0.4.147~),
 licensecheck,
 libregexp-assemble-perl,
 libimage-exiftool-perl,
 libfont-ttf-perl,
 debhelper,
 dh-buildinfo,
 gem2deb
Standards-Version: 3.9.8
Homepage: http://chunkypng.com/
Vcs-Git: https://anonscm.debian.org/git/pkg-sass/ruby-chunky-png
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-sass/ruby-chunky-png.git
XS-Ruby-Versions: all

Package: ruby-chunky-png
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ${misc:Depends},
 ${cdbs:Depends}
Description: 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.