Newscoop\Image\Thumbnail::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( string $src, integer $width, integer $height )
$src string
$width integer
$height integer
    public function __construct($src, $width, $height)
    {
        $this->src = (string) $src;
        $this->width = (int) $width;
        $this->height = (int) $height;
    }