webp.go 162 B

1234567891011121314
  1. // +build cgo
  2. package main
  3. import (
  4. "image"
  5. "io"
  6. "github.com/chai2010/webp"
  7. )
  8. func decodeWebp(r io.Reader) (image.Image, error) {
  9. return webp.Decode(r)
  10. }