Tagged Questions

2
votes
2answers
162 views

PDF dimensions vs actual content dimension

I'm currently using php's imagick to convert some PDF to images - This works well for the small detail that the images are 'chopped' during output. This is due to the difference in information ...
1
vote
4answers
444 views

php imagick convert PNG to jpg

$image = "[...]"; //binary string containing PNG image $file = fopen('image.tmp', 'wb'); fputs($file, $image); fclose($file); $image = new Imagick('PNG:image.tmp'); $image->thumbnailImage($width, ...
1
vote
2answers
884 views

PHP iMagick image compression

I'm fairly new to iMagick and have only found very limited documentation on the PHP library. I'm happily resizing images and writing them back to the hard drive, but I'm failing completely to ...