mautrix-whatsapp/webp.go
2020-05-09 02:08:23 +03:00

15 lines
162 B
Go

// +build cgo
package main
import (
"image"
"io"
"github.com/chai2010/webp"
)
func decodeWebp(r io.Reader) (image.Image, error) {
return webp.Decode(r)
}