scale() 공개 메소드

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