antking/phantom-pdf
最新稳定版本:v0.6.2
Composer 安装命令:
composer require antking/phantom-pdf
包简介
A Package for generating PDF files using PhantomJS, which fork from danielboendergaard/phantom-pdf
README 文档
README
A Package for generating PDF files using PhantomJS. The package is framework agnostic, but provides integration with Laravel 4/5.
Notice: This package only works on 64-bit Linux operating systems.
##Installation
Run composer require antking/phantom-pdf
####Laravel 4 Installation (optional)
Add PhantomPdfServiceProvider in the providers array in app/config/app.php
'providers' => [
...
'PhantomPdf\Laravel\PhantomPdfServiceProvider'
]
####Laravel 5 Installation (optional)
Add Laravel5ServiceProvider in the providers array in config/app.php
'providers' => [
...
'PhantomPdf\Laravel\Laravel5ServiceProvider'
]
Laravel 4/5 Facade usage (optional)
Add the facade to the aliases array in app/config/app.php (optional)
'aliases' => [
...
'PDF' => 'PhantomPdf\Laravel\PDFFacade'
]
##Usage with Laravel
class SampleController extends Controller { public function index() { $view = View::make('index'); return PDF::createFromView($view, 'filename.pdf'); } public function save() { $view = View::make('index'); PDF::saveFromView($view, 'path/filename.pdf'); } }
##Usage outside Laravel
$pdf = new PdfGenerator; // Set a writable path for temporary files $pdf->setStoragePath('storage/path'); // Saves the PDF as a file $pdf->saveFromView($html, 'filename.pdf'); // Returns a Symfony\Component\HttpFoundation\BinaryFileResponse return $pdf->createFromView($html, 'filename.pdf');
统计信息
- 总下载量: 2k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-07-20