mirror of
https://git.phreedom.club/localhost_frssoft/compy.git
synced 2024-11-06 00:13:20 +00:00
20 lines
318 B
Go
20 lines
318 B
Go
package transcoder
|
|
|
|
import (
|
|
"github.com/barnacs/compy/proxy"
|
|
"image/gif"
|
|
)
|
|
|
|
type Gif struct{}
|
|
|
|
func (t *Gif) Transcode(w *proxy.ResponseWriter, r *proxy.ResponseReader) error {
|
|
img, err := gif.Decode(r)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err = gif.Encode(w, img, nil); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|