From 175020d9acd5742d3a3cea4aa8e427ecc046b14b Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Wed, 31 Oct 2018 20:29:11 -0400 Subject: Add bmp image support Adds 'image/bmp' as an allowed mimetype for images. The image module is also updated to expect this new type. Signed-off-by: Malf Furious --- app/class/image.php | 2 ++ app/class/obj.class.php | 1 + 2 files changed, 3 insertions(+) diff --git a/app/class/image.php b/app/class/image.php index f4c639f..591e026 100644 --- a/app/class/image.php +++ b/app/class/image.php @@ -24,11 +24,13 @@ $_IMG_OPEN_FUNCS['image/jpeg'] = "imagecreatefromjpeg"; $_IMG_OPEN_FUNCS['image/jpg'] = "imagecreatefromjpeg"; $_IMG_OPEN_FUNCS['image/png'] = "imagecreatefrompng"; $_IMG_OPEN_FUNCS['image/gif'] = "imagecreatefromgif"; +$_IMG_OPEN_FUNCS['image/bmp'] = "imagecreatefrombmp"; $_IMG_WRITE_FUNCS['image/jpeg'] = "imagejpeg"; $_IMG_WRITE_FUNCS['image/jpg'] = "imagejpeg"; $_IMG_WRITE_FUNCS['image/png'] = "imagepng"; $_IMG_WRITE_FUNCS['image/gif'] = "imagegif"; +$_IMG_WRITE_FUNCS['image/bmp'] = "imagebmp"; /* * Open the given image and crop it, such that the result is a square diff --git a/app/class/obj.class.php b/app/class/obj.class.php index 7764888..81a0a27 100644 --- a/app/class/obj.class.php +++ b/app/class/obj.class.php @@ -31,6 +31,7 @@ class obj extends table "image/jpg", "image/png", "image/gif", + "image/bmp", ); /* -- cgit v1.2.3