fills.pl
上传用户:qdrechuli
上传日期:2022-08-01
资源大小:917k
文件大小:1k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. #!/usr/local/bin/perl
  2. use GD;
  3. $im = new GD::Image(100,50);
  4. # allocate black -- this will be our background
  5. $black = $im->colorAllocate(0, 0, 0);
  6. # allocate white
  7. $white = $im->colorAllocate(255, 255, 255);        
  8. # allocate red
  9. $red = $im->colorAllocate(255, 0, 0);      
  10. # allocate blue
  11. $blue = $im->colorAllocate(0,0,255);
  12. #Inscribe an ellipse in the image
  13. $im->arc(50, 25, 98, 48, 0, 360, $white);
  14. # Flood-fill the ellipse. Fill color is red, and will replace the
  15. # black interior of the ellipse
  16. $im->fill(50, 21, $red);
  17. # print the image to stdout
  18. print $im->gif;