Skip to content

Instantly share code, notes, and snippets.

@ibejohn818
Created October 2, 2014 06:30
Show Gist options
  • Save ibejohn818/20f81acfa1ef9fa8f32f to your computer and use it in GitHub Desktop.
Save ibejohn818/20f81acfa1ef9fa8f32f to your computer and use it in GitHub Desktop.
JPG to PDF
#!/usr/bin/php
<?php
$i = "/mnt/hgfs/johnhardy/Desktop/test.jpg";
$img = new Imagick($i);
$img->setFormat("pdf");
$fh = "/mnt/hgfs/johnhardy/Desktop/test.pdf";
$img->writeImage($fh);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment