Exemplo n.º 1
0
 public function testConvert()
 {
     $converter = new PhantomJS(array('search_paths' => shell_exec('which phantomjs'), 'orientation' => PhantomJS::ORIENTATION_LANDSCAPE, 'format' => PhantomJS::FORMAT_A4, 'zoomFactor' => 2, 'border' => '1cm', 'header' => array('height' => '1cm', 'content' => "<h1>{{pageNum}} / {{totalPages}}</h1>"), 'footer' => array('height' => '1cm', 'content' => "<h1>{{pageNum}} / {{totalPages}}</h1>")));
     $file = new TempFile();
     $converter->convert(new TempFile('test string to pdf', 'html'), $file);
     $this->assertFileExists($file->getFileName());
     $finfo = new \finfo(FILEINFO_MIME_TYPE);
     $mime = $finfo->file($file->getFileName());
     $this->assertEquals('application/pdf', $mime);
 }
Exemplo n.º 2
0
 * LICENSE: The MIT License (MIT)
 *
 * Copyright (C) 2013 Daniel Garajau Pereira
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this
 * software and associated documentation files (the "Software"), to deal in the Software
 * without restriction, including without limitation the rights to use, copy, modify,
 * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to the following
 * conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies
 * or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * @package    H2P
 * @author     Daniel Garajau <http://github.com/kriansa>
 * @copyright  2013 Daniel Garajau <http://github.com/kriansa>
 * @license    MIT License
 */
include '../autoloader.php';
use H2P\Converter\PhantomJS;
$converter = new PhantomJS();
// Convert destination accepts TempFile or string with the path to save the file
$converter->convert('http://www.google.com/', '/home/user/Documents/page.pdf');
Exemplo n.º 3
0
 * without restriction, including without limitation the rights to use, copy, modify,
 * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to the following
 * conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies
 * or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * @package    H2P
 * @author     Daniel Garajau <http://github.com/kriansa>
 * @copyright  2013 Daniel Garajau <http://github.com/kriansa>
 * @license    MIT License
 */
include '../autoloader.php';
use H2P\Converter\PhantomJS;
use H2P\TempFile;
use H2P\Request;
use H2P\Request\Cookie;
$converter = new PhantomJS(array('orientation' => PhantomJS::ORIENTATION_LANDSCAPE, 'format' => PhantomJS::FORMAT_A4, 'zoomFactor' => 2, 'border' => '1cm', 'header' => array('height' => '1cm', 'content' => "<h1>{{pageNum}} / {{totalPages}}</h1>"), 'footer' => array('height' => '1cm', 'content' => "<h1>{{pageNum}} / {{totalPages}}</h1>")));
// Create a full custom request
$request = new Request('http://www.google.com/', Request::METHOD_POST, array('param' => 'value'), array('X-Header' => 'value'), array(new Cookie('Cookie', 'value', 'domain')));
$destination = new TempFile();
$converter->convert($request, $destination);
// $destination->save('/home/user/Documents/page.pdf');