Merge pull request #10144 from annando/catch-imagick-error

Catch Imagick errors
This commit is contained in:
Hypolite Petovan 2021-04-12 12:04:29 -04:00 committed by GitHub
commit 0b239f368b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 7 deletions

View File

@ -230,9 +230,13 @@ class Image
}
if ($this->isImagick()) {
/* Clean it */
$this->image = $this->image->deconstructImages();
return $this->image;
try {
/* Clean it */
$this->image = $this->image->deconstructImages();
return $this->image;
} catch (Exception $e) {
return false;
}
}
return $this->image;
}
@ -676,10 +680,14 @@ class Image
}
if ($this->isImagick()) {
/* Clean it */
$this->image = $this->image->deconstructImages();
$string = $this->image->getImagesBlob();
return $string;
try {
/* Clean it */
$this->image = $this->image->deconstructImages();
$string = $this->image->getImagesBlob();
return $string;
} catch (Exception $e) {
return false;
}
}
ob_start();