Archive for March, 2010

Create Image using PHP

Create Image using PHP

PHP have mosts of functions available to create a image on the fly. You can use these functions to create a captcha image or a add banner on the fly. <?php $new_image = imagecreate( 400, 200 ); $apply_background = imagecolorallocate( $my_img, 0, 0, 255 ); $text_colour = imagecolorallocate( $new_image, 255, 255, 0 ); $line_colour = [...]