当前位置:Gxlcms > PHP教程 > php绘制圆形的二个例子php绘图函数imagearc()、ImagePng()的用法

php绘制圆形的二个例子php绘图函数imagearc()、ImagePng()的用法

时间:2021-07-01 10:21:17 帮助过:26人阅读

  1. header ("Content-type: image/png");
  2. $im = ImageCreate (150, 150);
  3. $grey = ImageColorAllocate ($im, 230, 230, 230);
  4. $black = ImageColorAllocate ($im, 0, 0, 0);
  5. ImageString($im, 3, 5, 5, "Figure 18.5: Circle", $black);
  6. ImageArc($im, 75, 75, 50, 50, 0, 360, $black);
  7. ImagePng ($im);
  8. ImageDestroy ($im);
  9. ?>

例2,绘制圆形 Drawing a Circle with imagearc()

  1. header("Content-type: image/png");
  2. $image = imagecreate( 200, 200 );
  3. $red = imagecolorallocate($image, 255,0,0);
  4. $blue = imagecolorallocate($image, 0,0,255 );
  5. imagearc( $image, 99, 99, 180, 180, 0, 360, $blue );
  6. imagefill( $image, 99, 99, $blue );
  7. imagepng($image);
  8. ?>

人气教程排行