当前位置:首页 > PHP教程 > php图像处理 > 列表

php简单创建图片实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-19 16:41:23 浏览: 评论:0 

php创建图片教程,我们在编程时经常会看到用php写图片,验证码等,下面是一个简单的php创建图片实例代码:

  1. <?php 
  2.  
  3. $height = 300; 
  4.  
  5. $width = 300; 
  6.  
  7. $im = ImageCreateTrueColor($width$height); 
  8.  
  9. $white = ImageColorAllocate ($im, 255, 255, 255); 
  10.  
  11. $blue = ImageColorAllocate ($im, 0, 0, 64); 
  12.  
  13. ImageFill($im, 0, 0, $blue); 
  14.  
  15. //ImageLine($im, 0, 0, $width, $height, $white); 
  16.  
  17. ImageString($im, 10, 100, 120, 'Hello,PHP'$white); 
  18.  
  19. Header ('Content-type: image/png'); 
  20.  
  21. ImagePng($im); 
  22. //开源代码phpfensi.com 
  23. ImageDestroy($im); 
  24.  
  25. ?> 

Tags: php创建图片 php图片实例

分享到: