mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-02-02 11:34:20 +02:00
16 lines
344 B
Go
16 lines
344 B
Go
|
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)
|
||
|
}
|