diff options
author | Diego <diegoajrodrigues@gmail.com> | 2020-04-02 12:51:32 +0200 |
---|---|---|
committer | Diego <diegoajrodrigues@gmail.com> | 2020-04-02 12:51:32 +0200 |
commit | 5abd2ae8c7fb30585dae2bf96ffa847771ebad7f (patch) | |
tree | 14bbc6199ee5875e3626fc3efe062cf21dbfd09f /system/libraries/Image_lib.php | |
parent | e7653a5f22b1803b2eb341bcff89b744b0caac03 (diff) |
Fixed issue with creating a resource from png using Image_lib
Diffstat (limited to 'system/libraries/Image_lib.php')
-rw-r--r-- | system/libraries/Image_lib.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php index 0d9fa4420..0ef76a101 100644 --- a/system/libraries/Image_lib.php +++ b/system/libraries/Image_lib.php @@ -1474,15 +1474,16 @@ class CI_Image_lib { $this->set_error(array('imglib_unsupported_imagecreate', 'imglib_png_not_supported')); return FALSE; } + + return imagecreatefrompng($path); case 18: if ( ! function_exists('imagecreatefromwebp')) { $this->set_error(array('imglib_unsupported_imagecreate', 'imglib_webp_not_supported')); return FALSE; } - return imagecreatefromwebp($path); - return imagecreatefrompng($path); + return imagecreatefromwebp($path); default: $this->set_error(array('imglib_unsupported_imagecreate')); return FALSE; |