1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-23 11:14:48 +02:00

16 lines
344 B
Go
Raw Normal View History

2019-10-10 19:20:25 +06:00
package imagesize
import (
"io"
)
func init() {
// Register fake svg decoder. Since we need this only for type detecting, we can
// return fake image sizes
decodeMeta := func(io.Reader) (*Meta, error) {
return &Meta{Format: "svg", Width: 1, Height: 1}, nil
}
RegisterFormat("<?xml ", decodeMeta)
RegisterFormat("<svg", decodeMeta)
}