Quantcast
Channel: RJ Solusoft » php
Viewing all articles
Browse latest Browse all 16

Smile face program – PHP GD Function

$
0
0

Simple Smile Face Program Using PHP GD Library Function.

code:

<?php

header (‘Content-type:image/png’);

$c=imagecreate(500,500);

$bc=imagecolorallocate($c,200,100,100);
$fc=imagecolorallocate($c,225,225,150);
$lc=imagecolorallocate($c,20,20,20);

imagefilledellipse($c,250,250,400,400,$fc);
imagefilledellipse($c,150,150,50,50,$lc);
imagefilledellipse($c,350,150,50,50,$lc);

imageline($c,250,200,280,275,$lc);
imageline($c,250,275,280,275,$lc);

imagearc($c,250,300,250,150,0,180,$lc);

imagepng($c);

imagedestroy($c);

?>

 


Filed under: PHP Tagged: Face Detection Script, GD library, php, php-gd, Smile Face Program

Viewing all articles
Browse latest Browse all 16

Trending Articles