Creating An Image Using PHP
Just Copy And Paste The Code Below you can create
.JPG,.GIF,.PNG
Any thing of you choice
Enjoy Wink
< ?php
create_image();
print "
“;
function create_image(){
$im = @imagecreate(200, 200) or die(”Cannot Initialize new GD image stream”);
$background_color = imagecolorallocate($im, 105, 255, 0); // yellow
imagepng($im,”image1.jpg”);
imagedestroy($im);
}
?>
Related posts:
- Simple PHP Captcha Image Verification or Validation
- Caching of images using javascript image object
- Image preloader using CSS
- Creating random number using php
- Creating a simple class file using PHP
