disintegration / imaging

Imaging is a simple image processing package for Go
MIT License
5.3k stars 443 forks source link

Added WebP support #100

Closed abelkuruvilla closed 5 years ago

abelkuruvilla commented 5 years ago

Added WebP Support for Image Encoding

disintegration commented 5 years ago

Thank you for the contribution!

As of now imaging imports a few decoding/encoding packages to support opening and saving images using Open and Save helper functions: JPEG, PNG, GIF (using Go standard packages), TIFF, BMP (using golang.org/x/image/* subrepositories). I have no plans on adding more formats to the list.

demdxx commented 5 years ago

@disintegration There is the support of WEBP in golang.org/x/image/webp If you have no time I don't mind to add this package support for you

abelkuruvilla commented 5 years ago

@demdxx I had seen the package, but it only supports webp decoding. It does not support webp encoding

demdxx commented 5 years ago

Yes you are right