Image processing is needed in almost every web application like creating watermarks, uploading & resizing avatars, cropping them & similar tasks.
Asido is a feature-rich image processing class for PHP that fits to any environment like GD2, Magick Wand and Image Magick. It supports both PHP4 & PHP5 (newer versions support only PHP5).
An example of adding a watermark to an image:
And the code:
<?php
include(’./../../asido/dev/class.asido.php’);
asido::driver(’gd’);
$i1 = asido::image(
‘the-source-image.jpg’,
‘filename-with-which-you-want-to-save-the-result.png’
);
asido::watermark($i1, ‘put-the-watermark-image-here.png’);
$i1->save(ASIDO_OVERWRITE_ENABLED);
?>
It is really simple and clear.
Asido can:
- resize
- watermark
- rotate
- copy
- crop
- grayscale
- convert
images with ease. To develop faster, Asido is worth a try.
Requirements: PHP4+, GD, Image Magick, Magick Wand
















