Projects tagged ‘captcha’, ‘effect’, and ‘image’


Jump to tag:

Projects tagged ‘captcha’, ‘effect’, and ‘image’

Filtered by Project Tags captcha effect image

[1 total ]

0 Users

PHP ImagePHP Image is an image class framework to help create images with PHP and GD2. Pretty much any common task is achievable through the use of simple plugins. The code is PHP 5 only, it is ... [More] extensively unit tested, and it's completely free. A simple thumbnail exampleCreating a thumbnail of an image is very easy indeed. $image = new Image("image.jpg"); $image->attach(new image_fx_resize(200)); $image->imagePng();A simple CAPTCHA exampleCreating a captcha is also straightforward. $image = new Image(); $image->createImageTrueColor(206,96,"FF0000"); $captcha = new image_draw_captcha("captcha"); $captcha->addTTFFont("fonts/arial.ttf"); $image->attach($captcha); $image->imagePng(); [Less]
Created 12 months ago.