resizeToHeight() public method

Resize the image object to the height parameter passed.
public resizeToHeight ( integer | string $hgt ) : mixed
$hgt integer | string
return mixed
コード例 #1
0
ファイル: GdTest.php プロジェクト: nicksagona/PopPHP
 public function testGif()
 {
     $i = new Gd(__DIR__ . '/../tmp/test.gif');
     $i->resizeToHeight(120);
     $this->assertEquals(120, $i->getHeight());
 }