2017-25 © Pedro Peláez
 

library pdf-to-image

Convert a pdf to an image

image

spatie/pdf-to-image

Convert a pdf to an image

  • Monday, July 2, 2018
  • by Spatie
  • Repository
  • 15 Watchers
  • 423 Stars
  • 696,199 Installations
  • PHP
  • 6 Dependents
  • 2 Suggesters
  • 80 Forks
  • 6 Open issues
  • 29 Versions
  • 15 % Grown

The README.md

Logo for pdf-to-image

Convert a PDF to an image

[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/pdf-to-image.svg?style=flat-square)](https://packagist.org/packages/spatie/pdf-to-image) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md) [![Quality Score](https://img.shields.io/scrutinizer/g/spatie/pdf-to-image.svg?style=flat-square)](https://scrutinizer-ci.com/g/spatie/pdf-to-image) [![Total Downloads](https://img.shields.io/packagist/dt/spatie/pdf-to-image.svg?style=flat-square)](https://packagist.org/packages/spatie/pdf-to-image)

This package provides an easy-to-work-with class to convert a PDF to one or more image., (*1)

Requirements

You should have Imagick and Ghostscript installed. See issues regarding Ghostscript and Imagick Issues for more information., (*2)

Installation

The package can be installed via composer and requires PHP 8.2+:, (*3)

composer require spatie/pdf-to-image

If you are using PHP < 8.2, use version 2.0 of this package., (*4)

Usage

Converting a PDF to an image is easy., (*5)

$pdf = new \Spatie\PdfToImage\Pdf($pathToPdf);
$pdf->save($pathToWhereImageShouldBeStored);

If the filename you pass to saveImage has the extensions jpg, jpeg, png, or webp the image will be saved in that format; otherwise the output format will be jpg., (*6)

The save() method returns an array with the filenames of the saved images if multiple images are saved, otherwise returns a string with the path to the saved image., (*7)

Other methods

Get the total number of pages in the pdf:, (*8)

/** @var int $numberOfPages */
$numberOfPages = $pdf->pageCount();

Check if a file type is a supported output format:, (*9)

/** @var bool $isSupported */
$isSupported = $pdf->isValidOutputFormat('jpg');

By default, only the first page of the PDF will be rendered. To render another page, call the selectPage() method:, (*10)

$pdf->selectPage(2)
    ->save($pathToWhereImageShouldBeStored); //saves the second page

Or, select multiple pages with the selectPages() method:, (*11)

$pdf->selectPages(2, 4, 5)
    ->save($directoryToWhereImageShouldBeStored); //saves the 2nd, 4th and 5th pages

Change the output format:, (*12)

$pdf->format(\Spatie\PdfToImage\Enums\OutputFormat::Webp)
    ->save($pathToWhereImageShouldBeStored); //the saved image will be in webp format

Set the output quality (the compression quality) from 0 to 100:, (*13)

$pdf->quality(90) // set an output quality of 90%
    ->save($pathToWhereImageShouldBeStored);

Set the output resolution DPI:, (*14)

$pdf->resolution(300) // resolution of 300 dpi
    ->save($pathToWhereImageShouldBeStored);

Specify the thumbnail size of the output image:, (*15)

$pdf
   ->thumbnailSize(400) // set thumbnail width to 400px; height is calculated automatically
   ->save($pathToWhereImageShouldBeStored);

// or:
$pdf
   ->thumbnailSize(400, 300) // set thumbnail width to 400px and the height to 300px
   ->save($pathToWhereImageShouldBeStored);

Set the output image width:, (*16)

$pdf->size(400) // set the width to 400px; height is calculated automatically
    ->save($pathToWhereImageShouldBeStored);

Set the output image width and height:, (*17)

$pdf->size(400, 300) // set the width to 400px and the height to 300px
    ->save($pathToWhereImageShouldBeStored);

Get the dimensions of the PDF. This can be used to determine if the PDF is extremely high-resolution., (*18)

/** @var \Spatie\PdfToImage\DTOs\PageSize $size */
$size = $pdf->getSize();

$width = $size->width;
$height = $size->height;

[!NOTE] $directoryToWhereImagesShouldBeStored must be an existing directory, (*19)

Save all pages to images:, (*20)

$pdf->saveAllPages($directoryToWhereImagesShouldBeStored);

Set the Merge Layer Method for Imagick:, (*21)

$pdf->layerMethod(\Spatie\PdfToImage\Enums\LayerMethod::Merge);

// or disable layer merging:
$pdf->layerMethod(\Spatie\PdfToImage\Enums\LayerMethod::None);

Set the background color of the output image:, (*22)

$pdf->backgroundColor('white') // simple text for 'white' color
    ->save($pathToWhereImageShouldBeStored);

$pdf->backgroundColor('#fff') // code for 'white' color
    ->save($pathToWhereImageShouldBeStored);

$pdf->backgroundColor('rgb(255,255,255)') // rgb for 'white' color
    ->save($pathToWhereImageShouldBeStored);

Issues regarding Ghostscript

This package uses Ghostscript through Imagick. For this to work Ghostscripts gs command should be accessible from the PHP process. For the PHP CLI process (e.g. Laravel's asynchronous jobs, commands, etc...) this is usually already the case., (*23)

However for PHP on FPM (e.g. when running this package "in the browser") you might run into the following problem:, (*24)

Uncaught ImagickException: FailedToExecuteCommand 'gs'

This can be fixed by adding the following line at the end of your php-fpm.conf file and restarting PHP FPM. If you're unsure where the php-fpm.conf file is located you can check phpinfo(). If you are using Laravel Valet the php-fpm.conf file will be located in the /usr/local/etc/php/YOUR-PHP-VERSION directory., (*25)

env[PATH] = /usr/local/bin:/usr/bin:/bin

This will instruct PHP FPM to look for the gs binary in the right places., (*26)

Imagick Issues

If you receive an error with the message attempt to perform an operation not allowed by the security policy 'PDF', you may need to add the following line to your policy.xml file. This file is usually located in /etc/ImageMagick-[VERSION]/policy.xml, such as /etc/ImageMagick-7/policy.xml., (*27)

<policy domain="coder" rights="read | write" pattern="PDF" />

Testing

spatie/pdf-to-image uses the PEST framework for unit tests. They can be run with the following command:, (*28)

bash ./vendor/bin/pest, (*29)

Changelog

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

Contributing

Please see CONTRIBUTING for details., (*31)

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities., (*32)

Credits

License

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

The Versions

02/07 2018

dev-master

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • ext-imagick *
  • php ^7.0

 

The Development Requires

image pdf convert spatie pdf-to-image

02/07 2018

1.8.1

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

03/04 2018

1.8.0

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

03/04 2018

dev-analysis-8Lwda6

dev-analysis-8Lwda6 https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

14/03 2018

1.7.0

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

14/03 2018

1.6.1

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

20/12 2017

1.6.0

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

26/10 2017

1.5.0

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

11/10 2017

1.4.6

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

11/10 2017

dev-extract-from-remote-pdfs

dev-extract-from-remote-pdfs https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

18/07 2017

1.4.5

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

11/07 2017

1.4.4

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

07/07 2017

1.4.3

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

01/07 2017

1.4.2

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

28/06 2017

1.4.1

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php ^7.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

20/06 2017

v2.x-dev

2.9999999.9999999.9999999-dev https://github.com/spatie/pdf-to-image

Convert a pdf to an image

  Sources   Download

MIT

The Requires

 

The Development Requires

image pdf convert spatie pdf-to-image

15/06 2017

1.4.0

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

25/04 2017

1.3.2

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

25/04 2017

1.3.3

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

16/04 2017

1.3.1

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

23/03 2017

1.3.0

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

Convert a pdf to an image

  Sources   Download

MIT

The Requires

  • php >=5.5.0
  • ext-imagick *

 

The Development Requires

image pdf convert spatie pdf-to-image

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