File: changelog.md

package info (click to toggle)
golang-github-soniakeys-quant 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: makefile: 2
file content (16 lines) | stat: -rw-r--r-- 825 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## v0.2 2013 Nov 14

* Ditherer added.  Sierra 24A, a simpler kernel than Floyd-Steinberg.
Provided through the new draw.Drawer interface which is new to Go 1.2.
* New draw.Quantizer interface supported, which is also new to Go 1.2.
* Tests added.  These work on whatever .png files are found in the source
directory.  The tests do nothing if no suitable .png files are present.

## v0.1 2013 Sep 20

This started as a little toy program to implement color quantization.  But then
I looked to see what else was published in Go along these lines and didn't find
much.  To add something of interest, I implemented a second algorithm and added
an interface.  That's about all that is in v0.1 here.  It's far from general
utility.  It needs things like dithering, subsampling, optimization for common
image types, and test code.