Last active
April 30, 2020 19:15
-
-
Save ivanhoe011/e2d7347dcdbc2cfda67ac8fa77f9b689 to your computer and use it in GitHub Desktop.
Create a preview of the pdf document
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $im = new Imagick(); | |
| $im->setResolution(300, 300); //set the resolution | |
| $im->readImage('document.pdf[0]'); //[0] for the first page | |
| $im->setImageFormat('jpg'); | |
| $im->writeImage('preview.jpg'); | |
| // or to output it: | |
| // header('Content-Type: image/jpeg'); | |
| // echo $im; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment