create() 공개 메소드

Create the image.
public create ( )
예제 #1
-1
 public function testCreateQrCode()
 {
     $qrCode = new QrCode();
     $qrCode->setText("Life is too short to be generating QR codes");
     $qrCode->setSize(300);
     $qrCode->create();
     $this->assertTrue(true);
 }