@@ -318,22 +318,22 @@ public function resize($width, $height, int $flags = self::FIT)
318
318
*/
319
319
public static function calculateSize (int $ srcWidth , int $ srcHeight , $ newWidth , $ newHeight , int $ flags = self ::FIT ): array
320
320
{
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 ));
323
323
$ percents = true ;
324
324
} else {
325
- $ newWidth = ( int ) abs ($ newWidth );
325
+ $ newWidth = abs ($ newWidth );
326
326
}
327
327
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 ));
330
330
$ flags |= empty ($ percents ) ? 0 : self ::STRETCH ;
331
331
} else {
332
- $ newHeight = ( int ) abs ($ newHeight );
332
+ $ newHeight = abs ($ newHeight );
333
333
}
334
334
335
335
if ($ flags & self ::STRETCH ) { // non-proportional
336
- if (empty ( $ newWidth) || empty ( $ newHeight) ) {
336
+ if (! $ newWidth || ! $ newHeight ) {
337
337
throw new Nette \InvalidArgumentException ('For stretching must be both width and height specified. ' );
338
338
}
339
339
@@ -343,7 +343,7 @@ public static function calculateSize(int $srcWidth, int $srcHeight, $newWidth, $
343
343
}
344
344
345
345
} else { // proportional
346
- if (empty ( $ newWidth) && empty ( $ newHeight) ) {
346
+ if (! $ newWidth && ! $ newHeight ) {
347
347
throw new Nette \InvalidArgumentException ('At least width or height must be specified. ' );
348
348
}
349
349
@@ -406,17 +406,17 @@ public function crop($left, $top, $width, $height)
406
406
*/
407
407
public static function calculateCutout (int $ srcWidth , int $ srcHeight , $ left , $ top , $ newWidth , $ newHeight ): array
408
408
{
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 );
411
411
}
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 );
414
414
}
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 );
417
417
}
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 );
420
420
}
421
421
if ($ left < 0 ) {
422
422
$ newWidth += $ left ;
@@ -464,12 +464,12 @@ public function place(self $image, $left = 0, $top = 0, int $opacity = 100)
464
464
$ width = $ image ->getWidth ();
465
465
$ height = $ image ->getHeight ();
466
466
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 );
469
469
}
470
470
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 );
473
473
}
474
474
475
475
$ output = $ input = $ image ->image ;
@@ -640,6 +640,22 @@ public function __clone()
640
640
}
641
641
642
642
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
+
643
659
/**
644
660
* Prevents serialization.
645
661
*/
0 commit comments