]> Cypherpunks repositories - gostls13.git/commit
image/tiff: Implement PackBits decoding.
authorBenny Siegert <bsiegert@gmail.com>
Thu, 13 Oct 2011 02:31:26 +0000 (13:31 +1100)
committerNigel Tao <nigeltao@golang.org>
Thu, 13 Oct 2011 02:31:26 +0000 (13:31 +1100)
commitbeed0a784415c2e20c2530e1898c0fa4c00d1ac8
tree75e5b854a42d598bad5b5e30edf263e6b51ef865
parentc64e8e327ec706c4ac9ac767273e08a5175b5ec8
image/tiff: Implement PackBits decoding.

The decompression routine is in its own file because
G3 encoding (which is more complicated) will be put
there.

R=nigeltao
CC=golang-dev
https://golang.org/cl/5177047
src/pkg/image/tiff/Makefile
src/pkg/image/tiff/compress.go [new file with mode: 0644]
src/pkg/image/tiff/reader.go
src/pkg/image/tiff/reader_test.go
src/pkg/image/tiff/testdata/bw-deflate.tiff [new file with mode: 0644]
src/pkg/image/tiff/testdata/bw-packbits.tiff [new file with mode: 0644]
src/pkg/image/tiff/testdata/bw-uncompressed.tiff [new file with mode: 0644]