imagick

how can i change the dpi of an image with the imagick extension

I need to change all uploaded files to 72 dpi. I'm using the php imagick extension. heres what i've tried (the image i'm using is 300dpi): $image = new Imagick(); $image->setResolution(72,72) ; $image->readImage($img); $image->resampleImage (72,72,imagick::FILTER_UNDEFINED,1); $image->writeImage($target) this doesn't seem to anythin...

Using Remote Image in ImageMagick

Hi all, I'm trying to do a simple thumbnail generation from an image that isn't located on my server using the iMagick wrapper for ImageMagick. For some reason, the following code will not display anything when called: <?php $image = new Imagick("http://kunaki.com/ProductImage.ASP?T=I&amp;ST=FO&amp;PID=PX003Y9EDJ"); $image->thumb...

PHP crop animated gif

Is it possible somehow to crop animated gif with builtin php libraries, ie without using Imagick etc? Thanks ;) ...

Crop bug in PHP Imagick?

I was trying to crop the animated gif and in the output i'm getting the same sized image, but cropped. A lot of empty space is filled with canvas. For example i had animated gif 600x100, but have requested 100x100 crop, on the output i'm getting 600x100 image with cropped image and empty space. Someone knows the solution for this issu...

How to combine multiple image with Imagick

I have a bunch of files in my database that I want to combine to a single PDF. I am trying to do this with Imagick. I cannot seem to find good documentation and could use some help. I want to read the binary data from my database for each file and then stream the combined file to the users. Here is what I have: //create the Imagick ...

Imagick not enough processor power?

I'm trying to do crop animated gif on VDS with this configuration: ~800MHz and 256 RAM And it's not working. It just eats memory and processor and after a ~minute returns no responce. http://i192.photobucket.com/albums/z228/Somebi/no-responce.jpg http://imm.io/1OID On local machine i'v created a virtual machine with 256 RAM. Everyth...