欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何使用php绘制在图片上的正余弦曲线

程序员文章站 2023-09-08 18:37:05
以前用actionscript写动态绘制三角函数曲线,其实php输出三角函数曲线也很简单。复制代码 代码如下:

以前用actionscript写动态绘制三角函数曲线,其实php输出三角函数曲线也很简单。

复制代码 代码如下:

<?php
 define("max_width_pixel", 600);
 define("max_height_pixel", 240);

 //发送标头信息
 header("content-type: image/gif");

 //建立图像
 $img = imagecreate(max_width_pixel, max_height_pixel);

 //设定颜色
 $bgcolor = imagecolorallocate($img, 0xff, 0xe9, 0xe9);
 $red = imagecolorallocate($img, 255, 0, 0);
 $blue = imagecolorallocate($img, 0, 0, 255);
 $brown = imagecolorallocate($img, 100, 0, 0);
 $black = imagecolorallocate($img, 0, 0, 0);

 $width  = max_width_pixel/2;    //宽度
 $height = max_height_pixel/2;    //高度

 //建立坐标轴
 imageline($img, $width, 0, $width, max_height_pixel, $black);//y轴
 imageline($img, 0, $height, max_width_pixel, $height, $black);//x轴

 //通过循环来实现函数图形的描绘
 for($i=0; $i<=max_width_pixel; $i++)
 {
  $y1 = 100 * sin($i/100 * m_pi);
  imagesetpixel($img, $i, $height+$y1, $blue);

  $y2 = 100 * sin($i/300 * m_pi);
  imagesetpixel($img, $i, $height+$y2, $red);

  $y3 = 100 * sin($i/300 * m_pi);
  imagesetpixel($img, $i, $height-$y3, $brown);
 }

 //显示图形
 imagegif($img);

 //释放资源
 imagedestroy($img);
        /*==隐逸鸟==*/
?>