lowercase when checking file name extensions.

This commit is contained in:
Chris Lu
2014-07-05 18:01:17 -07:00
parent 38231b6891
commit 413e5c145c

View File

@@ -2,6 +2,7 @@ package images
import ( import (
"path/filepath" "path/filepath"
"strings"
) )
/* /*
@@ -14,6 +15,7 @@ import (
*/ */
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)