Tagged Questions

0
votes
0answers
13 views

PHP iMagick image compression

Hi All, 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 …
0
votes
2answers
130 views

Imagemagick thumbnail generation with php - using -crop

Hi there, Long ago I created a small library for resizing images using imagemagick through system(...) because I did not feel that the build-in imagemagick functions for PHP were sufficient. …
2
votes
1answer
64 views

Using a transparent PNG as a clip mask

Is it possible to take this image: And apply this mask: And turn it into this: Using either GD or Imagick? I know it's possible to mask an image using shapes but I'm not sure how to go on …
1
vote
3answers
246 views

Imagick Installation Errors - Class Undefined

Okay, Here's a breakdown of what's up: <? $foo = new Imagick(); ?> works without error when ran from the command-line (e.g., sudo php myscript.php However, when run via the web browswer I get …
0
votes
1answer
88 views

Have GD get image from binary string

Hey everyone, Right now, I have a database that stores images in a MySQL BLOB field. I setup a script that selects and displays the images based on an ID in the URL, and I also made it so if you …
1
vote
3answers
326 views

Creating two pdf pages with Imagick

Currently i can create PDF files from images in Imagick with this function $im->setImageFormat("pdf"); $im->writeImage("file.pdf"); And it's possible to fetch multiple pages with imagick like …