Created
October 2, 2014 06:30
-
-
Save ibejohn818/20f81acfa1ef9fa8f32f to your computer and use it in GitHub Desktop.
JPG to PDF
This file contains 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
#!/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