scale() 공개 메소드

Scale the image object
public scale ( float | string $scl ) : Gd
$scl float | string
리턴 Gd
예제 #1
0
 public function testScale()
 {
     $i = new Gd(__DIR__ . '/../tmp/test.jpg');
     $i->scale(0.1);
     $this->assertEquals(64, $i->getWidth());
 }