Skip to content

Instantly share code, notes, and snippets.

@ivanhoe011
Last active April 30, 2020 19:15
Show Gist options
  • Select an option

  • Save ivanhoe011/e2d7347dcdbc2cfda67ac8fa77f9b689 to your computer and use it in GitHub Desktop.

Select an option

Save ivanhoe011/e2d7347dcdbc2cfda67ac8fa77f9b689 to your computer and use it in GitHub Desktop.
Create a preview of the pdf document
<?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