Two examples of php drawing circles. Usage of php drawing functions imagearc() and ImagePng()

WBOY
Release: 2016-07-25 08:56:14
Original
1065 people have browsed it
  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. ?>
复制代码


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!