This example shows how to make art in php gd.
This example shows how to make art in php gd.<?php
$width=200; $height=200;Header(
"Content-type: image/jpeg"); $im = imagecreate($width,$height); $white=ImageColorAllocate($im,255,255,255);{
{
$new=($x*$x*$x)/$sub;imagesetpixel (
$im, ($centerx+$x), ($centery-$new), $blue);imagesetpixel (
$im, ($centery-$new),($centerx+$x) , $red);imagesetpixel (
$im, ($centerx-$x), ($centery-$new), $red);imagesetpixel (
$im, ($centery+$new),($centerx+$x) , $blue);}
}
imagejpeg(
$im);ImageDestroy(
$im);?>
After running the program you will get the following output