diff options
| author | Benny Siegert <bsiegert@gmail.com> | 2011-05-04 20:52:55 -0700 |
|---|---|---|
| committer | Nigel Tao <nigeltao@golang.org> | 2011-05-04 20:52:55 -0700 |
| commit | d97b8a817bbc0c4a40ca9f567e5e0d7c227f1fd6 (patch) | |
| tree | 539baba3375bdc4692003f99dc51875d19dd2101 /src/pkg/Makefile | |
| parent | 737e96c7f35af64167072b1ff4b4ee63d009bc1c (diff) | |
| download | go-d97b8a817bbc0c4a40ca9f567e5e0d7c227f1fd6.tar.xz | |
image/tiff: implement a decoder.
The current iteration can decode 8-bit images in
grayscale, paletted, RGB, RGBA and NRGBA mode. LZW compression
is implemented but does not work on my test images.
Deflate (i.e. zlib) compression with or without a horizontal
predictor is supported.
R=nigeltao, nigeltao_gnome
CC=golang-dev, mpl
https://golang.org/cl/4240051
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index df84fc890a..fa597c8f8b 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -107,6 +107,7 @@ DIRS=\ image\ image/jpeg\ image/png\ + image/tiff\ image/ycbcr\ index/suffixarray\ io\ |
