mirror of
https://github.com/fishtailstudio/imgo
synced 2025-09-26 20:41:47 +08:00
12 lines
386 B
Go
12 lines
386 B
Go
package imgo
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrSourceImageIsNil = errors.New("source image is nil")
|
|
ErrSourceNotSupport = errors.New("source not support")
|
|
ErrSourceStringIsEmpty = errors.New("source string is empty")
|
|
ErrSourceImageNotSupport = errors.New("source image not support")
|
|
ErrSaveImageFormatNotSupport = errors.New("save image format not support")
|
|
)
|