golang-github-makeworld-the-better-one-dither 2.4.0-2 source package in Ubuntu

Changelog

golang-github-makeworld-the-better-one-dither (2.4.0-2) unstable; urgency=medium

  * Source-only upload for migration to testing

 -- Anthony Fok <email address hidden>  Thu, 21 Mar 2024 02:45:36 -0600

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-makeworld-the-better-one-dither_2.4.0-2.dsc 2.5 KiB 7a886abd099e6163c956a7320b9ecb350e897d8e09b3303b3c1d6fdc2b1848bd
golang-github-makeworld-the-better-one-dither_2.4.0.orig.tar.gz 2.1 MiB ae9eea0b57f7c0ef1efe18af2795715a84cc11dbdee88ca6321c988440308d26
golang-github-makeworld-the-better-one-dither_2.4.0-2.debian.tar.xz 2.6 KiB 67e4f3743dbc8a8b69764b90193dec41e6baf6844f4cc1dddbda7bfe8a84f8a6

No changes file available.

Binary packages built by this source

golang-github-makeworld-the-better-one-dither-dev: fast, correct image dithering library in Go

 dither is a library for dithering images in Go. It has many dithering
 algorithms built-in, and allows you to specify your own. Correctness
 is a top priority, as well as performance. It is designed to work well
 on its own, but also implements interfaces from the standard library,
 so that it can be integrated easily in a wide variety of situtations.
 .
 This library is uniquely correct from a math and quality perspective.
 It linearizes the image, and color comparisons are done with human
 luminance perception in mind (channel weighting). Few-to-no other
 libraries do this.
 .
 It supports images that make use of the alpha channel, AKA transparency.
 .
 Types of dithering supported:
 .
  * Random noise (in grayscale and RGB)
  * Ordered Dithering
    - Bayer matrix of any size (as long as dimensions are powers of two)
    - Clustered-dot - many different preprogrammed matrices
    - Some unusual horizontal or vertical line matrices
    - Yours?
      + Using PixelMapperFromMatrix, this library can dither using
        any matrix
      + If you need more freedom, PixelMapper can be used to implement
        any method of dithering that affects each pixel individually
 .
  * Error diffusion dithering
    - Simple 2D
    - Floyd-Steinberg, False Floyd-Steinberg
    - Jarvis-Judice-Ninke
    - Atkinson
    - Stucki
    - Burkes
    - Sierra/Sierra3, Sierra2, Sierra2-4A/Sierra-Lite
    - Steven Pigeon (https://hbfs.wordpress.com/2013/12/31/dithering/)
    - Yours? Custom error diffusion matrices can be used by the library.
 .
 More methods of dithering are being worked on, such as Riemersma,
 Yuliluoma, and blue noise.