This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

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);
}
?>

VN:F [1.5.7_846]
Rating: 0.0/10 (0 votes cast)
VN:F [1.5.7_846]
Rating: 0 (from 0 votes)

Related posts:

  1. Simple PHP Captcha Image Verification or Validation
  2. Caching of images using javascript image object
  3. Image preloader using CSS
  4. Creating random number using php
  5. Creating a simple class file using PHP

Leave a Reply

Comments (required)

Spam Protected