Skip to content

Commit 488f583

Browse files
committed
Image: better processing and checking dimensions in strings [Closes #217]
1 parent ca47cf7 commit 488f583

File tree

1 file changed

+36
-20
lines changed

1 file changed

+36
-20
lines changed

src/Utils/Image.php

+36-20
Original file line numberDiff line numberDiff line change
@@ -318,22 +318,22 @@ public function resize($width, $height, int $flags = self::FIT)
318318
*/
319319
public static function calculateSize(int $srcWidth, int $srcHeight, $newWidth, $newHeight, int $flags = self::FIT): array
320320
{
321-
if (is_string($newWidth) && substr($newWidth, -1) === '%') {
322-
$newWidth = (int) round($srcWidth / 100 * abs((int) substr($newWidth, 0, -1)));
321+
if ($newWidth !== null && self::isPercent($newWidth)) {
322+
$newWidth = (int) round($srcWidth / 100 * abs($newWidth));
323323
$percents = true;
324324
} else {
325-
$newWidth = (int) abs($newWidth);
325+
$newWidth = abs($newWidth);
326326
}
327327

328-
if (is_string($newHeight) && substr($newHeight, -1) === '%') {
329-
$newHeight = (int) round($srcHeight / 100 * abs((int) substr($newHeight, 0, -1)));
328+
if ($newHeight !== null && self::isPercent($newHeight)) {
329+
$newHeight = (int) round($srcHeight / 100 * abs($newHeight));
330330
$flags |= empty($percents) ? 0 : self::STRETCH;
331331
} else {
332-
$newHeight = (int) abs($newHeight);
332+
$newHeight = abs($newHeight);
333333
}
334334

335335
if ($flags & self::STRETCH) { // non-proportional
336-
if (empty($newWidth) || empty($newHeight)) {
336+
if (!$newWidth || !$newHeight) {
337337
throw new Nette\InvalidArgumentException('For stretching must be both width and height specified.');
338338
}
339339

@@ -343,7 +343,7 @@ public static function calculateSize(int $srcWidth, int $srcHeight, $newWidth, $
343343
}
344344

345345
} else { // proportional
346-
if (empty($newWidth) && empty($newHeight)) {
346+
if (!$newWidth && !$newHeight) {
347347
throw new Nette\InvalidArgumentException('At least width or height must be specified.');
348348
}
349349

@@ -406,17 +406,17 @@ public function crop($left, $top, $width, $height)
406406
*/
407407
public static function calculateCutout(int $srcWidth, int $srcHeight, $left, $top, $newWidth, $newHeight): array
408408
{
409-
if (is_string($newWidth) && substr($newWidth, -1) === '%') {
410-
$newWidth = (int) round($srcWidth / 100 * (int) substr($newWidth, 0, -1));
409+
if (self::isPercent($newWidth)) {
410+
$newWidth = (int) round($srcWidth / 100 * $newWidth);
411411
}
412-
if (is_string($newHeight) && substr($newHeight, -1) === '%') {
413-
$newHeight = (int) round($srcHeight / 100 * (int) substr($newHeight, 0, -1));
412+
if (self::isPercent($newHeight)) {
413+
$newHeight = (int) round($srcHeight / 100 * $newHeight);
414414
}
415-
if (is_string($left) && substr($left, -1) === '%') {
416-
$left = (int) round(($srcWidth - $newWidth) / 100 * (int) substr($left, 0, -1));
415+
if (self::isPercent($left)) {
416+
$left = (int) round(($srcWidth - $newWidth) / 100 * $left);
417417
}
418-
if (is_string($top) && substr($top, -1) === '%') {
419-
$top = (int) round(($srcHeight - $newHeight) / 100 * (int) substr($top, 0, -1));
418+
if (self::isPercent($top)) {
419+
$top = (int) round(($srcHeight - $newHeight) / 100 * $top);
420420
}
421421
if ($left < 0) {
422422
$newWidth += $left;
@@ -464,12 +464,12 @@ public function place(self $image, $left = 0, $top = 0, int $opacity = 100)
464464
$width = $image->getWidth();
465465
$height = $image->getHeight();
466466

467-
if (is_string($left) && substr($left, -1) === '%') {
468-
$left = (int) round(($this->getWidth() - $width) / 100 * (int) substr($left, 0, -1));
467+
if (self::isPercent($left)) {
468+
$left = (int) round(($this->getWidth() - $width) / 100 * $left);
469469
}
470470

471-
if (is_string($top) && substr($top, -1) === '%') {
472-
$top = (int) round(($this->getHeight() - $height) / 100 * (int) substr($top, 0, -1));
471+
if (self::isPercent($top)) {
472+
$top = (int) round(($this->getHeight() - $height) / 100 * $top);
473473
}
474474

475475
$output = $input = $image->image;
@@ -640,6 +640,22 @@ public function __clone()
640640
}
641641

642642

643+
/**
644+
* @param int|string $num in pixels or percent
645+
*/
646+
private static function isPercent(&$num): bool
647+
{
648+
if (is_string($num) && substr($num, -1) === '%') {
649+
$num = (float) substr($num, 0, -1);
650+
return true;
651+
} elseif (is_int($num) || $num === (string) (int) $num) {
652+
$num = (int) $num;
653+
return false;
654+
}
655+
throw new Nette\InvalidArgumentException("Expected dimension in int|string, '$num' given.");
656+
}
657+
658+
643659
/**
644660
* Prevents serialization.
645661
*/

0 commit comments

Comments
 (0)