VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP动态生成指定大小随机图片的方法

这篇文章主要介绍了PHP动态生成指定大小随机图片的方法,涉及PHP根据传入参数动态生成图片的相关技巧,需要的朋友可以参考下。

本文实例讲述了PHP动态生成指定大小随机图片的方法,分享给大家供大家参考,具体如下:

  1. <?php 
  2. $image_width = 100; 
  3. $image_height = 100; 
  4. $image_str = ''
  5. if (isset($_GET['w'])) 
  6.   $image_width = intval($_GET['w']); 
  7. if (isset($_GET['h'])) 
  8.   $image_height = intval($_GET['h']); 
  9. if (isset($_GET['s'])) 
  10.   $image_str = $_GET['s']; 
  11. $img = imagecreate($image_width$image_height); 
  12. $color = imagecolorallocate($img, mt_rand(157,255), mt_rand(157,255), mt_rand(157,255)); 
  13. imagefilledrectangle($img, 0, $image_height$image_width, 0, $color); 
  14. $step = mt_rand(15, 30); 
  15. $start = mt_rand(0, $step); 
  16. $color = imagecolorallocate($img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255)); 
  17. imagesetthickness($img, mt_rand(3, 10)); 
  18. if ($image_height > $image_width
  19.   for ($i=$start$i<$image_height * 2; $i+=$step
  20.   { 
  21.     imageline($img, 0, $i$i, 0, $color); 
  22.   } 
  23. else 
  24.   for ($i=$start$i<$image_width * 2; $i+=$step
  25.   { 
  26.     imageline($img$i, 0, 0, $i$color); 
  27.   } 
  28. if ($image_str != ''
  29.   $black = imagecolorallocate($img, 0, 0, 0); 
  30.   imagestring($img, 12, 5, 5, $image_str$black); 
  31. header('Content-type:image/png'); 
  32. imagepng($img); 
  33. imagedestroy($img);

原文链接:http://www.phpfensi.com/php/20210721/17352.html


相关教程