fix check for imagick #107
class_exists() triggerd __autoload and __autoload failed because Imagick.php doesn't exists. Change function to "extension_loaded()" Refs: #107
This commit is contained in:
parent
a5010a2bf3
commit
e0d0cfcc0e
@ -69,7 +69,7 @@ function upload($files, $albumID, $description = '', $tags = '') {
|
|||||||
// Set orientation based on EXIF data
|
// Set orientation based on EXIF data
|
||||||
if ($file['type'] === 'image/jpeg' && isset($info['orientation']) && isset($info['width']) && isset($info['height'])) {
|
if ($file['type'] === 'image/jpeg' && isset($info['orientation']) && isset($info['width']) && isset($info['height'])) {
|
||||||
|
|
||||||
if(class_exists('Imagick')) {
|
if(extension_loaded('imagick')) {
|
||||||
|
|
||||||
$rotateImage = 0;
|
$rotateImage = 0;
|
||||||
|
|
||||||
@ -306,7 +306,7 @@ function createThumb($filename, $width = 200, $height = 200) {
|
|||||||
$newUrl2x = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '@2x.jpeg';
|
$newUrl2x = __DIR__ . '/../../uploads/thumb/' . $photoName[0] . '@2x.jpeg';
|
||||||
|
|
||||||
// create thumbnails with Imagick
|
// create thumbnails with Imagick
|
||||||
if (class_exists('Imagick')) {
|
if(extension_loaded('imagick')) {
|
||||||
|
|
||||||
// read image
|
// read image
|
||||||
$thumb = new Imagick();
|
$thumb = new Imagick();
|
||||||
|
Loading…
Reference in New Issue
Block a user