mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
lowercase when checking file name extensions.
This commit is contained in:
parent
38231b6891
commit
413e5c145c
|
@ -2,6 +2,7 @@ package images
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -11,9 +12,10 @@ import (
|
||||||
* 3. remove the exif data
|
* 3. remove the exif data
|
||||||
* Call this function on any file uploaded to weedfs
|
* Call this function on any file uploaded to weedfs
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
func MaybePreprocessImage(filename string, data []byte, width, height int) (resized []byte, w int, h int) {
|
func MaybePreprocessImage(filename string, data []byte, width, height int) (resized []byte, w int, h int) {
|
||||||
ext := filepath.Ext(filename)
|
ext := filepath.Ext(filename)
|
||||||
|
ext = strings.ToLower(ext)
|
||||||
switch ext {
|
switch ext {
|
||||||
case ".png", ".gif":
|
case ".png", ".gif":
|
||||||
return Resized(ext, data, width, height)
|
return Resized(ext, data, width, height)
|
||||||
|
|
Loading…
Reference in a new issue