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

WBOY
发布: 2016-07-25 08:56:14
原创
1056 人浏览过
  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. ?>
复制代码


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!