Fix resizing
This commit is contained in:
parent
ffdbac7e41
commit
ebb9e0c2f5
|
@ -63,6 +63,7 @@ class Photo extends BaseModule
|
||||||
}
|
}
|
||||||
|
|
||||||
$customsize = 0;
|
$customsize = 0;
|
||||||
|
$square_resize = true;
|
||||||
$photo = false;
|
$photo = false;
|
||||||
$scale = null;
|
$scale = null;
|
||||||
$stamp = microtime(true);
|
$stamp = microtime(true);
|
||||||
|
@ -70,6 +71,7 @@ class Photo extends BaseModule
|
||||||
$customsize = intval($parameters['customsize']);
|
$customsize = intval($parameters['customsize']);
|
||||||
$uid = MPhoto::stripExtension($parameters['name']);
|
$uid = MPhoto::stripExtension($parameters['name']);
|
||||||
$photo = self::getAvatar($uid, $parameters['type'], $customsize);
|
$photo = self::getAvatar($uid, $parameters['type'], $customsize);
|
||||||
|
$square_resize = !in_array($parameters['type'], ['media', 'preview']);
|
||||||
} elseif (!empty($parameters['type'])) {
|
} elseif (!empty($parameters['type'])) {
|
||||||
$uid = MPhoto::stripExtension($parameters['name']);
|
$uid = MPhoto::stripExtension($parameters['name']);
|
||||||
$photo = self::getAvatar($uid, $parameters['type'], Proxy::PIXEL_SMALL);
|
$photo = self::getAvatar($uid, $parameters['type'], Proxy::PIXEL_SMALL);
|
||||||
|
@ -105,10 +107,14 @@ class Photo extends BaseModule
|
||||||
}
|
}
|
||||||
|
|
||||||
// if customsize is set and image is not a gif, resize it
|
// if customsize is set and image is not a gif, resize it
|
||||||
if ($photo['type'] !== "image/gif" && $customsize > 0 && $customsize < 501) {
|
if ($photo['type'] !== "image/gif" && $customsize > 0 && $customsize <= Proxy::PIXEL_THUMB && $square_resize) {
|
||||||
$img = new Image($imgdata, $photo['type']);
|
$img = new Image($imgdata, $photo['type']);
|
||||||
$img->scaleToSquare($customsize);
|
$img->scaleToSquare($customsize);
|
||||||
$imgdata = $img->asString();
|
$imgdata = $img->asString();
|
||||||
|
} elseif ($photo['type'] !== "image/gif" && $customsize > 0) {
|
||||||
|
$img = new Image($imgdata, $photo['type']);
|
||||||
|
$img->scaleDown($customsize);
|
||||||
|
$imgdata = $img->asString();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (function_exists("header_remove")) {
|
if (function_exists("header_remove")) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user