コード例 #1
0
ファイル: Manipulator.php プロジェクト: fvilpoix/php-common
 /**
  * Force the width and the height.
  */
 protected static function resizeByWidthHeight(ImageInterface $image, Format $format)
 {
     $box = new Box($format->getWidth(), $format->getHeight());
     return static::doResize($image, $box);
 }