Image.class.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756
  1. <?php
  2. /**
  3. +------------------------------------------------------------------------------
  4. * 图像操作类库
  5. +------------------------------------------------------------------------------
  6. * @category ORG
  7. * @package ORG
  8. * @subpackage Util
  9. * @author liu21st <liu21st@gmail.com>
  10. * @version $Id$
  11. +------------------------------------------------------------------------------
  12. */
  13. class Image extends Think
  14. {//类定义开始
  15. /**
  16. +----------------------------------------------------------
  17. * 取得图像信息
  18. *
  19. +----------------------------------------------------------
  20. * @static
  21. * @access public
  22. +----------------------------------------------------------
  23. * @param string $image 图像文件名
  24. +----------------------------------------------------------
  25. * @return mixed
  26. +----------------------------------------------------------
  27. */
  28. static function getImageInfo($img) {
  29. $imageInfo = getimagesize($img);
  30. if( $imageInfo!== false) {
  31. $imageType = strtolower(substr(image_type_to_extension($imageInfo[2]),1));
  32. $imageSize = filesize($img);
  33. $info = array(
  34. "width"=>$imageInfo[0],
  35. "height"=>$imageInfo[1],
  36. "type"=>$imageType,
  37. "size"=>$imageSize,
  38. "mime"=>$imageInfo['mime']
  39. );
  40. return $info;
  41. }else {
  42. return false;
  43. }
  44. }
  45. /**
  46. +----------------------------------------------------------
  47. * 为图片添加水印
  48. +----------------------------------------------------------
  49. * @static public
  50. +----------------------------------------------------------
  51. * @param string $source 原文件名
  52. * @param string $water 水印图片
  53. * @param string $$savename 添加水印后的图片名
  54. * @param string $alpha 水印的透明度
  55. +----------------------------------------------------------
  56. * @return string
  57. +----------------------------------------------------------
  58. * @throws ThinkExecption
  59. +----------------------------------------------------------
  60. */
  61. static public function water($source, $water, $savename=null, $alpha=80) {
  62. //检查文件是否存在
  63. if (!file_exists($source) || !file_exists($water))
  64. return false;
  65. //图片信息
  66. $sInfo = self::getImageInfo($source);
  67. $wInfo = self::getImageInfo($water);
  68. //如果图片小于水印图片,不生成图片
  69. if ($sInfo["width"] < $wInfo["width"] || $sInfo['height'] < $wInfo['height'])
  70. return false;
  71. //建立图像
  72. $sCreateFun = "imagecreatefrom" . $sInfo['type'];
  73. $sImage = $sCreateFun($source);
  74. $wCreateFun = "imagecreatefrom" . $wInfo['type'];
  75. $wImage = $wCreateFun($water);
  76. //设定图像的混色模式
  77. imagealphablending($wImage, true);
  78. //图像位置,默认为右下角右对齐
  79. $posY = $sInfo["height"] - $wInfo["height"];
  80. $posX = $sInfo["width"] - $wInfo["width"];
  81. //生成混合图像
  82. imagecopymerge($sImage, $wImage, $posX, $posY, 0, 0, $wInfo['width'], $wInfo['height'], $alpha);
  83. //输出图像
  84. $ImageFun = 'Image' . $sInfo['type'];
  85. //如果没有给出保存文件名,默认为原图像名
  86. if (!$savename) {
  87. $savename = $source;
  88. @unlink($source);
  89. }
  90. //保存图像
  91. $ImageFun($sImage, $savename);
  92. imagedestroy($sImage);
  93. }
  94. static public function watermark($source,$target = '',$config ) {
  95. $watermarkPadding = $config['watermark_pospadding'];
  96. $w_pos = $config['watermark_pos'];
  97. if($config['watermark_img'])$w_img = './Public/Images/'.$config['watermark_img'];
  98. $w_text = $config['watemard_text'];
  99. $w_font = $config['watemard_text_size'];
  100. $w_color = $config['watemard_text_color'];
  101. $fontface = './Public/Images/font/'.$config['watemard_text_face'];
  102. $w_pct = $config['watermark_pct'];
  103. $w_quality = $config['watermark_quality'];
  104. $w_minheight = $config['watemard_text'];
  105. $w_minwidth = $config['watemard_text'];
  106. $watermarkPadding = $config['watermark_pospadding'];
  107. $w_pos = $config['watermark_pos'];
  108. $positionPadding = ($watermarkPadding && $watermarkPadding > 0) ? $watermarkPadding : 5; // 边距
  109. $w_pos = $w_pos ? $w_pos : 9;
  110. $w_img = $w_img ? $w_img : $w_img;
  111. if(!$target) $target = $source;
  112. $source_info = getimagesize($source);
  113. $source_w = $source_info[0];
  114. $source_h = $source_info[1];
  115. if($source_w < $w_minwidth || $source_h < $w_minheight) return false;
  116. switch($source_info[2]) {
  117. case 1 :
  118. $source_img = imagecreatefromgif($source);
  119. break;
  120. case 2 :
  121. $source_img = imagecreatefromjpeg($source);
  122. break;
  123. case 3 :
  124. $source_img = imagecreatefrompng($source);
  125. break;
  126. default :
  127. return false;
  128. }
  129. if(!empty($w_img) && file_exists($w_img)) {
  130. $ifwaterimage = 1;
  131. $water_info = getimagesize($w_img);
  132. $width = $water_info[0];
  133. $height = $water_info[1];
  134. switch($water_info[2]) {
  135. case 1 :
  136. $water_img = imagecreatefromgif($w_img);
  137. break;
  138. case 2 :
  139. $water_img = imagecreatefromjpeg($w_img);
  140. break;
  141. case 3 :
  142. $water_img = imagecreatefrompng($w_img);
  143. break;
  144. default :
  145. return;
  146. }
  147. } else {
  148. $ifwaterimage = 0;
  149. $temp = imagettfbbox(ceil($w_font*2.5), 0, $fontface, $w_text);
  150. $width = $temp[2] - $temp[6];
  151. $height = $temp[3] - $temp[7];
  152. unset($temp);
  153. }
  154. switch($w_pos) {
  155. case 1:
  156. $wx = $positionPadding;
  157. $wy = $positionPadding;
  158. break;
  159. case 2:
  160. $wx = ($source_w - $width) / 2;
  161. $wy = $positionPadding;
  162. break;
  163. case 3:
  164. $wx = $source_w - $width;
  165. $wy = $positionPadding;
  166. break;
  167. case 4:
  168. $wx = $positionPadding;
  169. $wy = ($source_h - $height) / 2;
  170. break;
  171. case 5:
  172. $wx = ($source_w - $width) / 2;
  173. $wy = ($source_h - $height) / 2;
  174. break;
  175. case 6:
  176. $wx = $source_w - $width - $positionPadding;
  177. $wy = ($source_h - $height) / 2;
  178. break;
  179. case 7:
  180. $wx = $positionPadding;
  181. $wy = $source_h - $height;
  182. break;
  183. case 8:
  184. $wx = ($source_w - $width) / 2;
  185. $wy = $source_h - $height - $positionPadding;
  186. break;
  187. case 9:
  188. $wx = $source_w - $width - $positionPadding;
  189. $wy = $source_h - $height - $positionPadding ;
  190. break;
  191. case 10:
  192. $wx = rand(0,($source_w - $width));
  193. $wy = rand(0,($source_h - $height));
  194. break;
  195. default:
  196. $wx = rand(0,($source_w - $width));
  197. $wy = rand(0,($source_h - $height));
  198. break;
  199. }
  200. if($ifwaterimage) {
  201. if($water_info[2] == 3) {
  202. imagecopy($source_img, $water_img, $wx, $wy, 0, 0, $width, $height);
  203. } else {
  204. imagecopymerge($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $w_pct);
  205. }
  206. } else {
  207. if(!empty($w_color) && (strlen($w_color)==7)) {
  208. $r = hexdec(substr($w_color,1,2));
  209. $g = hexdec(substr($w_color,3,2));
  210. $b = hexdec(substr($w_color,5));
  211. } else {
  212. return;
  213. }
  214. $black = imagecolorallocate($source_img, $r,$g, $b);//设置颜色
  215. imagettftext($source_img, $w_font, 0, $wx, $wy, $black, $fontface, $w_text);//打印水印
  216. }
  217. switch($source_info[2]) {
  218. case 1 :
  219. imagegif($source_img, $target);
  220. break;
  221. case 2 :
  222. imagejpeg($source_img, $target, $w_quality);
  223. break;
  224. case 3 :
  225. imagepng($source_img, $target);
  226. break;
  227. default :
  228. return;
  229. }
  230. if(isset($water_info)) {
  231. unset($water_info);
  232. }
  233. if(isset($water_img)) {
  234. imagedestroy($water_img);
  235. }
  236. unset($source_info);
  237. imagedestroy($source_img);
  238. return true;
  239. }
  240. /**
  241. +----------------------------------------------------------
  242. * 显示服务器图像文件
  243. * 支持URL方式
  244. +----------------------------------------------------------
  245. * @static
  246. * @access public
  247. +----------------------------------------------------------
  248. * @param string $imgFile 图像文件名
  249. * @param string $text 文字字符串
  250. * @param string $width 图像宽度
  251. * @param string $height 图像高度
  252. +----------------------------------------------------------
  253. * @return void
  254. +----------------------------------------------------------
  255. */
  256. static function showImg($imgFile,$text='',$width=80,$height=30) {
  257. //获取图像文件信息
  258. $info = Image::getImageInfo($imgFile);
  259. if($info !== false) {
  260. $createFun = str_replace('/','createfrom',$info['mime']);
  261. $im = $createFun($imgFile);
  262. if($im) {
  263. $ImageFun= str_replace('/','',$info['mime']);
  264. if(!empty($text)) {
  265. $tc = imagecolorallocate($im, 0, 0, 0);
  266. imagestring($im, 3, 5, 5, $text, $tc);
  267. }
  268. if($info['type']=='png' || $info['type']=='gif') {
  269. imagealphablending($im, false);//取消默认的混色模式
  270. imagesavealpha($im,true);//设定保存完整的 alpha 通道信息
  271. }
  272. header("Content-type: ".$info['mime']);
  273. $ImageFun($im);
  274. imagedestroy($im);
  275. return ;
  276. }
  277. }
  278. //获取或者创建图像文件失败则生成空白PNG图片
  279. $im = imagecreatetruecolor($width, $height);
  280. $bgc = imagecolorallocate($im, 255, 255, 255);
  281. $tc = imagecolorallocate($im, 0, 0, 0);
  282. imagefilledrectangle($im, 0, 0, 150, 30, $bgc);
  283. imagestring($im, 4, 5, 5, "NO PIC", $tc);
  284. Image::output($im);
  285. return ;
  286. }
  287. /**
  288. +----------------------------------------------------------
  289. * 生成缩略图
  290. +----------------------------------------------------------
  291. * @static
  292. * @access public
  293. +----------------------------------------------------------
  294. * @param string $image 原图
  295. * @param string $type 图像格式
  296. * @param string $thumbname 缩略图文件名
  297. * @param string $maxWidth 宽度
  298. * @param string $maxHeight 高度
  299. * @param string $position 缩略图保存目录
  300. * @param boolean $interlace 启用隔行扫描
  301. +----------------------------------------------------------
  302. * @return void
  303. +----------------------------------------------------------
  304. */
  305. static function thumb($image,$thumbname,$type='',$maxWidth=200,$maxHeight=50,$interlace=true)
  306. {
  307. // 获取原图信息
  308. $info = Image::getImageInfo($image);
  309. if($info !== false) {
  310. $srcWidth = $info['width'];
  311. $srcHeight = $info['height'];
  312. $type = empty($type)?$info['type']:$type;
  313. $type = strtolower($type);
  314. $interlace = $interlace? 1:0;
  315. unset($info);
  316. $scale = min($maxWidth/$srcWidth, $maxHeight/$srcHeight); // 计算缩放比例
  317. if($scale>=1) {
  318. // 超过原图大小不再缩略
  319. $width = $srcWidth;
  320. $height = $srcHeight;
  321. }else{
  322. // 缩略图尺寸
  323. $width = (int)($srcWidth*$scale);
  324. $height = (int)($srcHeight*$scale);
  325. }
  326. // 载入原图
  327. $createFun = 'ImageCreateFrom'.($type=='jpg'?'jpeg':$type);
  328. $srcImg = $createFun($image);
  329. //创建缩略图
  330. if($type!='gif' && function_exists('imagecreatetruecolor'))
  331. $thumbImg = imagecreatetruecolor($width, $height);
  332. else
  333. $thumbImg = imagecreate($width, $height);
  334. // 复制图片
  335. if(function_exists("ImageCopyResampled"))
  336. imagecopyresampled($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth,$srcHeight);
  337. else
  338. imagecopyresized($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth,$srcHeight);
  339. if('gif'==$type || 'png'==$type) {
  340. //imagealphablending($thumbImg, false);//取消默认的混色模式
  341. //imagesavealpha($thumbImg,true);//设定保存完整的 alpha 通道信息
  342. $background_color = imagecolorallocate($thumbImg, 0,255,0); // 指派一个绿色
  343. imagecolortransparent($thumbImg,$background_color); // 设置为透明色,若注释掉该行则输出绿色的图
  344. }
  345. // 对jpeg图形设置隔行扫描
  346. if('jpg'==$type || 'jpeg'==$type) imageinterlace($thumbImg,$interlace);
  347. //$gray=ImageColorAllocate($thumbImg,255,0,0);
  348. //ImageString($thumbImg,2,5,5,"ThinkPHP",$gray);
  349. // 生成图片
  350. // $imageFun = 'image'.($type=='jpg'?'jpeg':$type);
  351. //$imageFun($thumbImg,$thumbname);
  352. if($type=='jpg' || $type=='jpeg')
  353. {
  354. imagejpeg($thumbImg,$thumbname, 100);
  355. }
  356. else
  357. {
  358. $imageFun = 'image'.$type;
  359. $imageFun($thumbImg,$thumbname);
  360. }
  361. imagedestroy($thumbImg);
  362. imagedestroy($srcImg);
  363. return $thumbname;
  364. }
  365. return false;
  366. }
  367. /**
  368. +----------------------------------------------------------
  369. * 根据给定的字符串生成图像
  370. +----------------------------------------------------------
  371. * @static
  372. * @access public
  373. +----------------------------------------------------------
  374. * @param string $string 字符串
  375. * @param string $size 图像大小 width,height 或者 array(width,height)
  376. * @param string $font 字体信息 fontface,fontsize 或者 array(fontface,fontsize)
  377. * @param string $type 图像格式 默认PNG
  378. * @param integer $disturb 是否干扰 1 点干扰 2 线干扰 3 复合干扰 0 无干扰
  379. * @param bool $border 是否加边框 array(color)
  380. +----------------------------------------------------------
  381. * @return string
  382. +----------------------------------------------------------
  383. */
  384. static function buildString($string,$rgb=array(),$filename='',$type='png',$disturb=1,$border=true) {
  385. if(is_string($size)) $size = explode(',',$size);
  386. $width = $size[0];
  387. $height = $size[1];
  388. if(is_string($font)) $font = explode(',',$font);
  389. $fontface = $font[0];
  390. $fontsize = $font[1];
  391. $length = strlen($string);
  392. $width = ($length*9+10)>$width?$length*9+10:$width;
  393. $height = 22;
  394. if ( $type!='gif' && function_exists('imagecreatetruecolor')) {
  395. $im = @imagecreatetruecolor($width,$height);
  396. }else {
  397. $im = @imagecreate($width,$height);
  398. }
  399. if(empty($rgb)) {
  400. $color = imagecolorallocate($im, 102, 104, 104);
  401. }else{
  402. $color = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
  403. }
  404. $backColor = imagecolorallocate($im, 255,255,255); //背景色(随机)
  405. $borderColor = imagecolorallocate($im, 100, 100, 100); //边框色
  406. $pointColor = imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); //点颜色
  407. @imagefilledrectangle($im, 0, 0, $width - 1, $height - 1, $backColor);
  408. @imagerectangle($im, 0, 0, $width-1, $height-1, $borderColor);
  409. @imagestring($im, 5, 5, 3, $string, $color);
  410. if(!empty($disturb)) {
  411. // 添加干扰
  412. if($disturb=1 || $disturb=3) {
  413. for($i=0;$i<25;$i++){
  414. imagesetpixel($im,mt_rand(0,$width),mt_rand(0,$height),$pointColor);
  415. }
  416. }elseif($disturb=2 || $disturb=3){
  417. for($i=0;$i<10;$i++){
  418. imagearc($im,mt_rand(-10,$width),mt_rand(-10,$height),mt_rand(30,300),mt_rand(20,200),55,44,$pointColor);
  419. }
  420. }
  421. }
  422. Image::output($im,$type,$filename);
  423. }
  424. /**
  425. +----------------------------------------------------------
  426. * 生成图像验证码
  427. +----------------------------------------------------------
  428. * @static
  429. * @access public
  430. +----------------------------------------------------------
  431. * @param string $length 位数
  432. * @param string $mode 类型
  433. * @param string $type 图像格式
  434. * @param string $width 宽度
  435. * @param string $height 高度
  436. +----------------------------------------------------------
  437. * @return string
  438. +----------------------------------------------------------
  439. */
  440. static function buildImageVerify($length=4,$mode=1,$type='png',$width=48,$height=22,$verifyName='verify')
  441. {
  442. import('@.ORG.String');
  443. $randval = String::rand_string($length,$mode);
  444. $_SESSION[$verifyName]= md5($randval);
  445. $width = ($length*10+10)>$width?$length*10+10:$width;
  446. if ( $type!='gif' && function_exists('imagecreatetruecolor')) {
  447. $im = @imagecreatetruecolor($width,$height);
  448. }else {
  449. $im = @imagecreate($width,$height);
  450. }
  451. $r = Array(225,255,255,223);
  452. $g = Array(225,236,237,255);
  453. $b = Array(225,236,166,125);
  454. $key = mt_rand(0,3);
  455. $backColor = imagecolorallocate($im, $r[$key],$g[$key],$b[$key]); //背景色(随机)
  456. $borderColor = imagecolorallocate($im, 100, 100, 100); //边框色
  457. $pointColor = imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); //点颜色
  458. @imagefilledrectangle($im, 0, 0, $width - 1, $height - 1, $backColor);
  459. @imagerectangle($im, 0, 0, $width-1, $height-1, $borderColor);
  460. $stringColor = imagecolorallocate($im,mt_rand(0,200),mt_rand(0,120),mt_rand(0,120));
  461. // 干扰
  462. for($i=0;$i<10;$i++){
  463. $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
  464. imagearc($im,mt_rand(-10,$width),mt_rand(-10,$height),mt_rand(30,300),mt_rand(20,200),55,44,$fontcolor);
  465. }
  466. for($i=0;$i<25;$i++){
  467. $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
  468. imagesetpixel($im,mt_rand(0,$width),mt_rand(0,$height),$pointColor);
  469. }
  470. for($i=0;$i<$length;$i++) {
  471. imagestring($im,5,$i*10+5,mt_rand(1,8),$randval{$i}, $stringColor);
  472. }
  473. // @imagestring($im, 5, 5, 3, $randval, $stringColor);
  474. Image::output($im,$type);
  475. }
  476. // 中文验证码
  477. static function GBVerify($length=4,$type='png',$width=180,$height=50,$fontface='simhei.ttf',$verifyName='verify') {
  478. $code = rand_string($length,4);
  479. $width = ($length*45)>$width?$length*45:$width;
  480. $_SESSION[$verifyName]= md5($code);
  481. $im=imagecreatetruecolor($width,$height);
  482. $borderColor = imagecolorallocate($im, 100, 100, 100); //边框色
  483. $bkcolor=imagecolorallocate($im,250,250,250);
  484. imagefill($im,0,0,$bkcolor);
  485. @imagerectangle($im, 0, 0, $width-1, $height-1, $borderColor);
  486. // 干扰
  487. for($i=0;$i<15;$i++){
  488. $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
  489. imagearc($im,mt_rand(-10,$width),mt_rand(-10,$height),mt_rand(30,300),mt_rand(20,200),55,44,$fontcolor);
  490. }
  491. for($i=0;$i<255;$i++){
  492. $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
  493. imagesetpixel($im,mt_rand(0,$width),mt_rand(0,$height),$fontcolor);
  494. }
  495. if(!is_file($fontface)) {
  496. $fontface = dirname(__FILE__)."/".$fontface;
  497. }
  498. for($i=0;$i<$length;$i++){
  499. $fontcolor=imagecolorallocate($im,mt_rand(0,120),mt_rand(0,120),mt_rand(0,120)); //这样保证随机出来的颜色较深。
  500. $codex= msubstr($code,$i,1);
  501. imagettftext($im,mt_rand(16,20),mt_rand(-60,60),40*$i+20,mt_rand(30,35),$fontcolor,$fontface,$codex);
  502. }
  503. Image::output($im,$type);
  504. }
  505. /**
  506. +----------------------------------------------------------
  507. * 把图像转换成字符显示
  508. +----------------------------------------------------------
  509. * @static
  510. * @access public
  511. +----------------------------------------------------------
  512. * @param string $image 要显示的图像
  513. * @param string $type 图像类型,默认自动获取
  514. +----------------------------------------------------------
  515. * @return string
  516. +----------------------------------------------------------
  517. */
  518. static function showASCIIImg($image,$string='',$type='')
  519. {
  520. $info = Image::getImageInfo($image);
  521. if($info !== false) {
  522. $type = empty($type)?$info['type']:$type;
  523. unset($info);
  524. // 载入原图
  525. $createFun = 'ImageCreateFrom'.($type=='jpg'?'jpeg':$type);
  526. $im = $createFun($image);
  527. $dx = imagesx($im);
  528. $dy = imagesy($im);
  529. $i = 0;
  530. $out = '<span style="padding:0px;margin:0;line-height:100%;font-size:1px;">';
  531. set_time_limit(0);
  532. for($y = 0; $y < $dy; $y++) {
  533. for($x=0; $x < $dx; $x++) {
  534. $col = imagecolorat($im, $x, $y);
  535. $rgb = imagecolorsforindex($im,$col);
  536. $str = empty($string)?'*':$string[$i++];
  537. $out .= sprintf('<span style="margin:0px;color:#%02x%02x%02x">'.$str.'</span>',$rgb['red'],$rgb['green'],$rgb['blue']);
  538. }
  539. $out .= "<br>\n";
  540. }
  541. $out .= '</span>';
  542. imagedestroy($im);
  543. return $out;
  544. }
  545. return false;
  546. }
  547. /**
  548. +----------------------------------------------------------
  549. * 生成高级图像验证码
  550. +----------------------------------------------------------
  551. * @static
  552. * @access public
  553. +----------------------------------------------------------
  554. * @param string $type 图像格式
  555. * @param string $width 宽度
  556. * @param string $height 高度
  557. +----------------------------------------------------------
  558. * @return string
  559. +----------------------------------------------------------
  560. */
  561. static function showAdvVerify($type='png',$width=180,$height=40)
  562. {
  563. $rand = range('a','z');
  564. shuffle($rand);
  565. $verifyCode = array_slice($rand,0,10);
  566. $letter = implode(" ",$verifyCode);
  567. $_SESSION['verifyCode'] = $verifyCode;
  568. $im = imagecreate($width,$height);
  569. $r = array(225,255,255,223);
  570. $g = array(225,236,237,255);
  571. $b = array(225,236,166,125);
  572. $key = mt_rand(0,3);
  573. $backColor = imagecolorallocate($im, $r[$key],$g[$key],$b[$key]);
  574. $borderColor = imagecolorallocate($im, 100, 100, 100); //边框色
  575. imagefilledrectangle($im, 0, 0, $width - 1, $height - 1, $backColor);
  576. imagerectangle($im, 0, 0, $width-1, $height-1, $borderColor);
  577. $numberColor = imagecolorallocate($im, 255,rand(0,100), rand(0,100));
  578. $stringColor = imagecolorallocate($im, rand(0,100), rand(0,100), 255);
  579. // 添加干扰
  580. /*
  581. for($i=0;$i<10;$i++){
  582. $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
  583. imagearc($im,mt_rand(-10,$width),mt_rand(-10,$height),mt_rand(30,300),mt_rand(20,200),55,44,$fontcolor);
  584. }
  585. for($i=0;$i<255;$i++){
  586. $fontcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
  587. imagesetpixel($im,mt_rand(0,$width),mt_rand(0,$height),$fontcolor);
  588. }*/
  589. imagestring($im, 5, 5, 1, "0 1 2 3 4 5 6 7 8 9", $numberColor);
  590. imagestring($im, 5, 5, 20, $letter, $stringColor);
  591. Image::output($im,$type);
  592. }
  593. /**
  594. +----------------------------------------------------------
  595. * 生成UPC-A条形码
  596. +----------------------------------------------------------
  597. * @static
  598. +----------------------------------------------------------
  599. * @param string $type 图像格式
  600. * @param string $type 图像格式
  601. * @param string $lw 单元宽度
  602. * @param string $hi 条码高度
  603. +----------------------------------------------------------
  604. * @return string
  605. +----------------------------------------------------------
  606. */
  607. static function UPCA($code,$type='png',$lw=2,$hi=100) {
  608. static $Lencode = array('0001101','0011001','0010011','0111101','0100011',
  609. '0110001','0101111','0111011','0110111','0001011');
  610. static $Rencode = array('1110010','1100110','1101100','1000010','1011100',
  611. '1001110','1010000','1000100','1001000','1110100');
  612. $ends = '101';
  613. $center = '01010';
  614. /* UPC-A Must be 11 digits, we compute the checksum. */
  615. if ( strlen($code) != 11 ) { die("UPC-A Must be 11 digits."); }
  616. /* Compute the EAN-13 Checksum digit */
  617. $ncode = '0'.$code;
  618. $even = 0; $odd = 0;
  619. for ($x=0;$x<12;$x++) {
  620. if ($x % 2) { $odd += $ncode[$x]; } else { $even += $ncode[$x]; }
  621. }
  622. $code.=(10 - (($odd * 3 + $even) % 10)) % 10;
  623. /* Create the bar encoding using a binary string */
  624. $bars=$ends;
  625. $bars.=$Lencode[$code[0]];
  626. for($x=1;$x<6;$x++) {
  627. $bars.=$Lencode[$code[$x]];
  628. }
  629. $bars.=$center;
  630. for($x=6;$x<12;$x++) {
  631. $bars.=$Rencode[$code[$x]];
  632. }
  633. $bars.=$ends;
  634. /* Generate the Barcode Image */
  635. if ( $type!='gif' && function_exists('imagecreatetruecolor')) {
  636. $im = imagecreatetruecolor($lw*95+30,$hi+30);
  637. }else {
  638. $im = imagecreate($lw*95+30,$hi+30);
  639. }
  640. $fg = ImageColorAllocate($im, 0, 0, 0);
  641. $bg = ImageColorAllocate($im, 255, 255, 255);
  642. ImageFilledRectangle($im, 0, 0, $lw*95+30, $hi+30, $bg);
  643. $shift=10;
  644. for ($x=0;$x<strlen($bars);$x++) {
  645. if (($x<10) || ($x>=45 && $x<50) || ($x >=85)) { $sh=10; } else { $sh=0; }
  646. if ($bars[$x] == '1') { $color = $fg; } else { $color = $bg; }
  647. ImageFilledRectangle($im, ($x*$lw)+15,5,($x+1)*$lw+14,$hi+5+$sh,$color);
  648. }
  649. /* Add the Human Readable Label */
  650. ImageString($im,4,5,$hi-5,$code[0],$fg);
  651. for ($x=0;$x<5;$x++) {
  652. ImageString($im,5,$lw*(13+$x*6)+15,$hi+5,$code[$x+1],$fg);
  653. ImageString($im,5,$lw*(53+$x*6)+15,$hi+5,$code[$x+6],$fg);
  654. }
  655. ImageString($im,4,$lw*95+17,$hi-5,$code[11],$fg);
  656. /* Output the Header and Content. */
  657. Image::output($im,$type);
  658. }
  659. // 生成手机号码
  660. static public function buildPhone() {
  661. }
  662. // 生成邮箱图片
  663. static public function buildEmail($email,$rgb=array(),$filename='',$type='png') {
  664. $mail = explode('@',$email);
  665. $user = trim($mail[0]);
  666. $mail = strtolower(trim($mail[1]));
  667. $path = dirname(__FILE__).'/Mail/';
  668. if(is_file($path.$mail.'.png')) {
  669. $im = imagecreatefrompng($path.$mail.'.png');
  670. $user_width = imagettfbbox(9, 0, dirname(__FILE__)."/Mail/tahoma.ttf", $user);
  671. $x_value = (200 - ($user_width[2] + 113));
  672. if(empty($rgb)) {
  673. $color = imagecolorallocate($im, 102, 104, 104);
  674. }else{
  675. $color = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
  676. }
  677. imagettftext($im, 9, 0, $x_value, 16, $color, dirname(__FILE__)."/Mail/tahoma.ttf", $user);
  678. }else{
  679. $user_width = imagettfbbox(9, 0, dirname(__FILE__)."/Mail/tahoma.ttf", $email);
  680. $width = $user_width[2]+15;
  681. $height = 20;
  682. $im = imagecreate($width,20);
  683. $backColor = imagecolorallocate($im, 255,255,255); //背景色(随机)
  684. $borderColor = imagecolorallocate($im, 100, 100, 100); //边框色
  685. $pointColor = imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); //点颜色
  686. imagefilledrectangle($im, 0, 0, $width - 1, $height - 1, $backColor);
  687. imagerectangle($im, 0, 0, $width-1, $height-1, $borderColor);
  688. if(empty($rgb)) {
  689. $color = imagecolorallocate($im, 102, 104, 104);
  690. }else{
  691. $color = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
  692. }
  693. imagettftext($im, 9, 0, 5, 16, $color, dirname(__FILE__)."/Mail/tahoma.ttf", $email);
  694. for($i=0;$i<25;$i++){
  695. imagesetpixel($im,mt_rand(0,$width),mt_rand(0,$height),$pointColor);
  696. }
  697. }
  698. Image::output($im,$type,$filename);
  699. }
  700. static function output($im,$type='png',$filename='')
  701. {
  702. header("Content-type: image/".$type);
  703. $ImageFun='image'.$type;
  704. if(empty($filename)) {
  705. $ImageFun($im);
  706. }else{
  707. $ImageFun($im,$filename);
  708. }
  709. imagedestroy($im);
  710. }
  711. }//类定义结束
  712. ?>