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