14 lines
616 B
Go
14 lines
616 B
Go
package core
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrUnsupportedEncodingParameters error indicates that encoding/decoding was attempted with unsupported
|
|
// encoding parameters.
|
|
// For example when trying to encode with an unsupported Predictor (flate).
|
|
ErrUnsupportedEncodingParameters = errors.New("unsupported encoding parameters")
|
|
ErrNoCCITTFaxDecode = errors.New(" CCITTFaxDecode encoding is not yet implemented")
|
|
ErrNoJBIG2Decode = errors.New(" JBIG2Decode encoding is not yet implemented")
|
|
ErrNoJPXDecode = errors.New(" JPXDecode encoding is not yet implemented")
|
|
)
|