2017 © Pedro PelĂĄez
 

library pdf-to-image

Convert a pdf to an image with Imagick extension. Forked from spatie/pdf-to-image

image

bnbwebexpertise/pdf-to-image

Convert a pdf to an image with Imagick extension. Forked from spatie/pdf-to-image

  • Monday, May 22, 2017
  • by gabsource
  • Repository
  • 4 Watchers
  • 0 Stars
  • 1,640 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 80 Forks
  • 0 Open issues
  • 12 Versions
  • 14 % Grown

The README.md

Convert a pdf to an image

This package provides an easy to work with class to convert pdf's to images., (*1)

Requirements

You should have Imagick and Ghostscript installed., (*2)

Install

The package can be installed via composer: ``` bash $ composer require bnbwebexpertise/pdf-to-image, (*3)


## Usage Converting a pdf to an image is easy. ```php $pdf = new Bnb\PdfToImage\Pdf($pathToPdf); $pdf->saveImage($pathToWhereImageShouldBeStored);

If the path you pass to saveImage has the extensions jpg, jpeg, or png the image will be saved in that format. Otherwise the output will be a jpg., (*4)

Other methods

You can get the total number of pages in the pdf:, (*5)

$pdf->getNumberOfPages(); //returns an int

By default the first page of the pdf will be rendered. If you want to render another page you can do so:, (*6)

$pdf->setPage(2)
    ->saveImage($pathToWhereImageShouldBeStored); //saves the second page

You can override the output format:, (*7)

$pdf->setOutputFormat('png')
    ->saveImage($pathToWhereImageShouldBeStored); //the output wil be a png, no matter what

You can configure custom settings (where page is the page number) :, (*8)

$beforeImageReadSettings = function (\Imagick $imagick, $page) {
    $imagick->setColorspace(\Imagick::COLORSPACE_SRGB);

    return $imagick;
};

$beforeImageWriteSettings = function (\Imagick $imagick, $page) {
    $imagick->resizeImage(1024, 1024, \Imagick::FILTER_LANCZOS, 0, true);
    $imagick->setImageColorspace(\Imagick::COLORSPACE_GRAY);

    return $imagick;
};

$pdf = new Pdf($this->testFile, $beforeImageReadSettings, $beforeImageWriteSettings)
    ->saveImage($pathToWhereImageShouldBeStored); //the output will be resized to a grayscale image with a best-fit dimension of 1024x1024

Change log

Please see CHANGELOG for more information what has changed recently., (*9)

Testing

bash $ composer test, (*10)

Contributing

Please see CONTRIBUTING for details., (*11)

Security

If you discover any security related issues, please email support@bnb.be instead of using the issue tracker., (*12)

Credits

License

The MIT License (MIT). Please see License File for more information., (*13)

The Versions

22/05 2017

dev-master

9999999-dev https://github.com/bnbwebexpertise/pdf-to-image

Convert a pdf to an image with Imagick extension. Forked from spatie/pdf-to-image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

by Jérémy Gaulin

image pdf convert pdf-to-image bnbwebexpertise

09/05 2017

1.2.5

1.2.5.0 https://github.com/bnbwebexpertise/pdf-to-image

Convert a pdf to an image with Imagick extension. Forked from spatie/pdf-to-image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

by Jérémy Gaulin

image pdf convert pdf-to-image bnbwebexpertise

24/04 2017

1.2.4

1.2.4.0 https://github.com/bnbwebexpertise/pdf-to-image

Convert a pdf to an image with Imagick extension. Forked from spatie/pdf-to-image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

by Jérémy Gaulin

image pdf convert pdf-to-image bnbwebexpertise

02/02 2017

1.2.3

1.2.3.0 https://github.com/bnbwebexpertise/pdf-to-image

Convert a pdf to an image with Imagick extension. Forked from spatie/pdf-to-image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

by Jérémy Gaulin

image pdf convert pdf-to-image bnbwebexpertise

14/12 2016

1.2.2

1.2.2.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image

08/09 2016

1.2.1

1.2.1.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image

29/04 2016

1.2.0

1.2.0.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image

13/04 2016

1.1.0

1.1.0.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image

22/01 2016

1.0.3

1.0.3.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image

03/07 2015

1.0.1

1.0.1.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image

02/07 2015

1.0.0

1.0.0.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image

02/07 2015

0.0.1

0.0.1.0 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

The Development Requires

image pdf convert spatie pdf-to-image