mirror of
https://git.phreedom.club/localhost_frssoft/compy.git
synced 2024-11-06 00:13:20 +00:00
32 lines
594 B
Go
32 lines
594 B
Go
package transcoder
|
|
|
|
import (
|
|
"github.com/barnacs/compy/proxy"
|
|
"github.com/chai2010/webp"
|
|
"image/gif"
|
|
"net/http"
|
|
)
|
|
|
|
type Gif struct{}
|
|
|
|
func (t *Gif) Transcode(w *proxy.ResponseWriter, r *proxy.ResponseReader, headers http.Header) error {
|
|
img, err := gif.Decode(r)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if SupportsWebP(headers) {
|
|
w.Header().Set("Content-Type", "image/webp")
|
|
options := webp.Options{
|
|
Lossless: false,
|
|
}
|
|
if err = webp.Encode(w, img, &options); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err = gif.Encode(w, img, nil); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|