Now only resize if supported
This commit is contained in:
parent
09727024ba
commit
2624abdc35
|
@ -163,8 +163,8 @@ function photo_init(App $a) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Resize only if its not a GIF
|
// Resize only if its not a GIF and it is supported by the library
|
||||||
if ($mimetype != "image/gif") {
|
if (($mimetype != "image/gif") && in_array($mimetype, Photo::supportedTypes())) {
|
||||||
$ph = new Photo($data, $mimetype);
|
$ph = new Photo($data, $mimetype);
|
||||||
if ($ph->is_valid()) {
|
if ($ph->is_valid()) {
|
||||||
if (isset($customres) && $customres > 0 && $customres < 500) {
|
if (isset($customres) && $customres > 0 && $customres < 500) {
|
||||||
|
|
Loading…
Reference in a new issue