mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-05 20:52:50 +08:00
Add webp extension for resizing
This commit is contained in:
parent
2595f269d1
commit
7374b5b473
@ -264,7 +264,7 @@ func conditionallyResizeImages(originalDataReaderSeeker io.ReadSeeker, ext strin
|
|||||||
}
|
}
|
||||||
|
|
||||||
func shouldResizeImages(ext string, r *http.Request) (width, height int, mode string, shouldResize bool) {
|
func shouldResizeImages(ext string, r *http.Request) (width, height int, mode string, shouldResize bool) {
|
||||||
if ext == ".png" || ext == ".jpg" || ext == ".jpeg" || ext == ".gif" {
|
if ext == ".png" || ext == ".jpg" || ext == ".jpeg" || ext == ".gif" || ext == ".webp" {
|
||||||
if r.FormValue("width") != "" {
|
if r.FormValue("width") != "" {
|
||||||
width, _ = strconv.Atoi(r.FormValue("width"))
|
width, _ = strconv.Atoi(r.FormValue("width"))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user