Skip to content

Instantly share code, notes, and snippets.

@hereswhatidid
Created August 12, 2021 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hereswhatidid/53b37b8da16d6f3a9b9b8122690655f3 to your computer and use it in GitHub Desktop.
Save hereswhatidid/53b37b8da16d6f3a9b9b8122690655f3 to your computer and use it in GitHub Desktop.
Generate JPG from PDF with PHP
<?php
$pdfThumb = new imagick();
$pdfThumb->setResolution(10, 10);
$pdfThumb->readImage( __DIR__ . '/PDFFile.pdf' . '[0]');
$pdfThumb->setImageFormat('jpg');
$fp = __DIR__ . '/PDFFile.jpg';
$pdfThumb->writeImage($fp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment