Dont create borders around previews when scaling up is disabled
This commit is contained in:
parent
1a454f61ed
commit
578eb33c20
|
@ -615,7 +615,7 @@ class Preview {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($newXSize < $x || $newYSize < $y) {
|
if (($newXSize < $x || $newYSize < $y) && $scalingUp) {
|
||||||
if ($newXSize > $x) {
|
if ($newXSize > $x) {
|
||||||
$cropX = floor(($newXSize - $x) * 0.5);
|
$cropX = floor(($newXSize - $x) * 0.5);
|
||||||
$image->crop($cropX, 0, $x, $newYSize);
|
$image->crop($cropX, 0, $x, $newYSize);
|
||||||
|
|
Loading…
Reference in New Issue