unipdf/pdf/core/const.go
Gunnsteinn Hall 784a60e42b Encoding fixes for images
Support avg, paeth predictors for decoding. Special error flag for
unsupported error parameters. Support specifying encoder when creating
new image objects (inline,xobject).
2017-04-19 11:46:53 +00:00

13 lines
257 B
Go

/*
* This file is subject to the terms and conditions defined in
* file 'LICENSE.md', which is part of this source code package.
*/
package core
import "errors"
var (
ErrUnsupportedEncodingParameters = errors.New("Unsupported encoding parameters")
)