saveAs() public method

Save the image to given filename (triggers image creation)
public saveAs ( string $filename ) : boolean
$filename string to save image as
return boolean whether image was created successfully
Example #1
0
 public function testCanUseXvfbRun()
 {
     $inFile = $this->getHtmlAsset();
     $outFile = $this->getOutFile('png');
     $binary = $this->getBinary();
     $image = new Image(array('binary' => $binary, 'commandOptions' => array('enableXvfb' => true)));
     $this->assertInstanceOf('mikehaertl\\wkhtmlto\\Image', $image->setPage($inFile));
     $this->assertTrue($image->saveAs($outFile));
     $tmpFile = $image->getImageFilename();
     $command = (string) $image->getCommand();
     $this->assertEquals("xvfb-run --server-args=\"-screen 0, 1024x768x24\" {$binary} '{$inFile}' '{$tmpFile}'", $command);
     unlink($outFile);
 }
Example #2
0
 protected function setScreenshot($domain)
 {
     $options = ["type" => "jpg", "ignoreWarnings" => true];
     $image = new Image($this->domain);
     $image->setOptions($options);
     $imageURL = 'images/' . $domain . '.jpg';
     $image->saveAs($imageURL);
     if (is_readable($imageURL)) {
         return $imageURL;
     }
     return false;
 }