You've already forked imgproxy
mirror of
https://github.com/imgproxy/imgproxy.git
synced 2026-06-19 23:24:30 +02:00
24 lines
519 B
Go
24 lines
519 B
Go
package processing
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/imgproxy/imgproxy/v4/errctx"
|
|
"github.com/imgproxy/imgproxy/v4/imagetype"
|
|
)
|
|
|
|
type (
|
|
SaveFormatError struct{ *errctx.TextError }
|
|
)
|
|
|
|
func newSaveFormatError(format imagetype.Type) error {
|
|
return SaveFormatError{errctx.NewTextError(
|
|
fmt.Sprintf("Can't save %s, probably not supported by your libvips", format),
|
|
1,
|
|
errctx.WithStatusCode(http.StatusUnprocessableEntity),
|
|
errctx.WithPublicMessage("Invalid URL"),
|
|
errctx.WithShouldReport(false),
|
|
)}
|
|
}
|