Merge pull request #2365 from hmhealey/plt2142

PLT-2142 Increased the maximum size of image uploads to 24 megapixels
Этот коммит содержится в:
Corey Hulen
2016-03-07 14:12:51 -08:00
родитель b8b38c0c72 733396f6b3
Коммит 1dde831daf

Просмотреть файл

@@ -52,7 +52,7 @@ const (
RotatedCCWMirrored = 7
RotatedCW = 8
MaxImageSize = 4096 * 2160 // 4k resolution
MaxImageSize = 6048 * 4032 // 24 megapixels, roughly 36MB as a raw image
)
var fileInfoCache *utils.Cache = utils.NewLru(1000)