Maison  >  Article  >  développement back-end  >  php绘制圆形的二个例子 php绘图函数imagearc()、ImagePng()的用法

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

WBOY
WBOYoriginal
2016-07-25 08:56:141115parcourir
  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. ?>
复制代码


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn