14 lines
162 B
Go
14 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)
|
|
}
|