Process Images Easily In PHP With Asido
6
May
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
Website: http://asido.info/
Download: http://asido.info/download/
Website: http://asido.info/
Download: http://asido.info/download/
- Tags:
Php Watermark
- Filed under: Effects, Goodies, Images, LGPL License
- 3 Comments























3 Responses for "Process Images Easily In PHP With Asido"
Ya good stuff.. I will try it ..
wow, ill try this now
how i can want to rotate an image in silverlight?
how i can use image processing operation in silverlight like
emboss,diffuse,spia,invert etc.