PHP code to draw cos function on image
Today i will tell you how to draw cos function in PHP. This is very simple task to draw a cosine function with PHP code. These are functions of Mathematics and used in Numerical Computations. Now below watch the code in PHP language.
<?php
$x = 600;
$y = 315;
$gd = imagecreatetruecolor($x, $y); //create background image
$red = imagecolorallocate($gd, 255, 255, 255); //create image
for ($i = 0; $i < 600; $i++) {
imagesetpixel($gd, 300, $i, $red); //draw vertical line
imagesetpixel($gd, $i, 157, $red); //draw horizontal line
}
$x = 0;
for($i = 90; $i <= 360; $i+=3)
{
$y = 157 + (50*cos($i)); //get y-axis with farmula
imagesetpixel($gd, $x+300, $y, $red); //draw elips
$x++;
}
header('Content-Type: image/png');
imagepng($gd);
?>
PHP code to draw cos function on image
Reviewed by Unknown
on
02:28
Rating:
Reviewed by Unknown
on
02:28
Rating:

