recreate project
|
After Width: | Height: | Size: 65 B |
|
After Width: | Height: | Size: 167 B |
|
After Width: | Height: | Size: 138 B |
|
After Width: | Height: | Size: 65 B |
|
After Width: | Height: | Size: 175 B |
|
After Width: | Height: | Size: 156 B |
|
After Width: | Height: | Size: 162 B |
|
After Width: | Height: | Size: 142 B |
|
After Width: | Height: | Size: 72 B |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 239 B |
|
After Width: | Height: | Size: 142 B |
|
After Width: | Height: | Size: 72 B |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 239 B |
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
$im = new Imagick();
|
||||
try {
|
||||
$im -> readImage("doc.pdf[5]");
|
||||
$im -> destroy();
|
||||
} catch (ImagickException $e) {
|
||||
echo "Error: " . $e -> getMessage() . "\n";
|
||||
}
|
||||
|
||||
$im = new Imagick();
|
||||
try {
|
||||
ob_start();
|
||||
@$im -> readImage("doc.pdf[5]");
|
||||
ob_end_clean();
|
||||
$im -> destroy();
|
||||
} catch (ImagickException $e) {
|
||||
echo "Error: " . $e -> getMessage() . "\n";
|
||||
}
|
||||