create() public method

Create the image.
public create ( )
Example #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);
 }