KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
tiff
★ 11
Open GitHub ↗
An extended version of x/image/tiff.
Download README (.md)
Explore Similar Repositories
pytorch-inpainting-partial-conv
:
A PyTorch implementation of the "Image Inpainting for Irregular Holes Using Partial Convolutions" paper from Liu et al at NVIDIA
phpLaravelCryptoTradingBot
:
Simple bot that makes trades on the Binance API
Face-Recognition-with-FaceNet-and-OpenCV
:
Real Time Face Recognition
redux-miniprogram-bindings
:
适用于小程序的 Redux 绑定辅助库
NLP-ML_CS-Cpp_Review
:
NLP/ML面试各类资料链接 汇总(主要Github收集)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tiff
?
Download (.md)
# Note This package is an improved version of [x/image/tiff](https://github.com/golang/image/tree/master/tiff) featuring: * Read support for CCITT Group3/4 compressed images using [x/image/ccitt](https://github.com/golang/image/tree/master/ccitt) * Read/write support for LZW compressed images. * Read/write support for the CMYK color model. * Read support for JPEG compressed images. * Read support for multi page TIFF files. ## Background Working on [pdfcpu](https://github.com/pdfcpu/pdfcpu) (a PDF processor) created a need for processing TIFF files and LZW compression. 1) CCITT compression for monochrome images was the first need. This is being addressed as part of ongoing work on [x/image/ccitt](https://github.com/golang/image/tree/master/ccitt). 2) TIFF LZW compression uses MSB bit order, 8-bit literal codes, and TIFF's code-width transition behavior. 3) The PDF specification defines a CMYK color space. This is currently not supported at [x/image/tiff](https://github.com/golang/image/tree/master/tiff). ## Goal An improved version of [x/image/tiff](https://github.com/golang/image/tree/master/tiff) with full read/write support for CCITT, LZW, JPEG compression and the CMYK color model.