go-libwebp

Experimental translation from libwebp to Go source.
Log | Files | Refs | README | LICENSE

webp.go (181B)


      1 // Package webp is an idiomatic Go wrapper for libwebp codec.
      2 package webp
      3 
      4 import (
      5 	"image"
      6 )
      7 
      8 func init() {
      9 	image.RegisterFormat("webp", "RIFF????WEBP", Decode, DecodeConfig)
     10 }