2017 © Pedro Peláez
 

library laravel-pdf-to-image

Convert pdf files to images

image

jianhuawang/laravel-pdf-to-image

Convert pdf files to images

  • Monday, July 2, 2018
  • by jianhuawang
  • Repository
  • 1 Watchers
  • 4 Stars
  • 141 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 2 Open issues
  • 6 Versions
  • 1663 % Grown

The README.md

laravel-pdf-to-image

Convert pdf files to images for Laravel., (*1)

Laravel 框架下的 PDF 转图片工具包,, (*2)

本包提供了Laravel 把pdf文件转换为图片的功能, 同时基于Laravel Storage 对生成的图片进行存储和管理。, (*3)

功能列表:

  1. 按页转换PDF文件为图片,每页生成1张图片
  2. Convert every page of PDF fiel to one image.
  3. 保存到指定的存储空间
  4. Save images to disk of Storage
  5. 支持云存储(测试中)
  6. Save image to cloud disk.(Developing)
  7. 支持定时任务后台转换图片(开发中)
  8. Convert PDF file to images by cron task.(Developing)

依赖 Package dependencies

必须安装扩展包,You must install package imagick, 参考信息 more info: http://php.net/manual/en/book.imagick.php http://php.net/manual/en/imagick.setup.php , (*4)

"ext-imagick" : "*",
"intervention/image": "^2.0",
"illuminate/support": "5.*"
, (*5)

执行 run: php artisan vendor:publish --provider="Intervention\Image\ImageServiceProviderLaravel5"
then: you will find a new file image.php in folder config. Change " 'driver' => 'gd' " to " 'driver' => 'imagick' " , (*6)

安装Installation:

composer require jianhuawang/laravel-pdf-to-image:^0.4 , (*7)

Laravel >= 5.5, after install nothing left to do.
Laravel

Add a provider in providers array in config/app.php:
JianhuaWang\PdfToImage\PdfToImageMaker::class,
 Add a aliase in aliases array:
'PdfToImage'=>JianhuaWang\PdfToImage\PdfToImageFacade::class, , (*8)

用法Usage:

  1. Following code will read pdf file on (project root) + /storage/app/test.pdf, and convert first page to image, the image will be saved on (project root) + /storage/app/(current date)/(seconds).jpg $pdfFileNameWithPath='test.pdf';     $converter=new JianhuaWang\PdfToImage\PdfToImageMaker($pdfFileNameWithPath); $converter->saveImage();// Default action is converting all pages to images.
  2. The following codes has same function with above. , (*9)

    use PdfToImage; PdfToImage::pdfFile('test.pdf')->saveImage(); , (*10)

The Versions

02/07 2018

dev-master

9999999-dev

Convert pdf files to images

  Sources   Download

MIT

The Requires

 

by Jianhua Wang

laravel pdf laravel 5 pdf to image convert image pdt-to-image

26/04 2018

v0.3.1

0.3.1.0

Convert pdf files to images

  Sources   Download

MIT

The Requires

 

by Jianhua Wang

laravel pdf laravel 5 pdf to image convert image pdt-to-image

26/04 2018

v0.4

0.4.0.0

Convert pdf files to images

  Sources   Download

MIT

The Requires

 

by Jianhua Wang

laravel pdf laravel 5 pdf to image convert image pdt-to-image

26/04 2018

v0.3

0.3.0.0

Convert pdf files to images

  Sources   Download

MIT

The Requires

 

by Jianhua Wang

laravel pdf pdf to image convert image

25/04 2018

V0.1

0.1.0.0

Convert pdf files to images

  Sources   Download

MIT

The Requires

 

by Jianhua Wang

24/04 2018

0.1.x-dev

0.1.9999999.9999999-dev

Convert pdf files to images

  Sources   Download

MIT

The Requires

 

by Jianhua Wang