fawno/php-wkhtmltox
Composer 安装命令:
composer require fawno/php-wkhtmltox
包简介
PHP/FFI class for the C library wkhtmltox
README 文档
README
PHP/FFI class for wkhtmltox C library Render HTML into PDF and various image formats using the Qt WebKit rendering engine.
Requirements
- wkhtmltox C library: https://wkhtmltopdf.org/
- FFI PHP extension (bunded in PHP >= 7.4.0).
Installation
You can install this plugin into your application using composer:
composer require fawno/php-wkhtmltox
Usage
require 'vendor/autoload.php'; use Fawno\PHPwkhtmltox\wkhtmltoimage; // Create wkhtmltoimage object (on Windows) //$wk = new wkhtmltoimage(__DIR__ . '/bin/wkhtmltox.dll'); // Create wkhtmltoimage object (on Linux) $wk = new wkhtmltoimage('/usr/local/lib/wkhtmltox.so'); // Set screen Width $wk->set_global_setting('screenWidth', '1200'); // Set url to render $wk->set_global_setting('in', 'https://wkhtmltopdf.org/'); // Set output format to PNG $wk->set_global_setting('fmt', 'png'); // Render url and return image as string $data = $wk->convert(); // Set output filename $wk->set_global_setting('out', 'wkhtmltopdf.png'); // Render url $wk->convert();
统计信息
- 总下载量: 112
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-02-19