Heim  >  Artikel  >  Backend-Entwicklung  >  php绘制圆形的二个例子 php绘图函数imagearc()、ImagePng()的用法

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

WBOY
WBOYOriginal
2016-07-25 08:56:141121Durchsuche
  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. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn