Software Details:
Version: 1.0
Upload Date: 3 Jun 15
Distribution Type: Freeware
Downloads: 14
PHP ImageMagick Class is a class for processing images with ImageMagick. This PHP Class makes it possible to process images in a very easy way.
To scale an image to 640x480 when it's bigger youy can do this:
include('imagemagick.class.php');
$im = new Imagemagick($targetdir);
$im->Resize(640, 480, 'keep_aspect');
$im->Save();
$im->CleanUp();
?>
What is new in this release:
- retrieve image data
- flip
- dither
- monochrome
- negate
- rotate
- blur
- draw frame
- resize
- square
- crop
- convert
- save
Comments not found