gd.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  1. <?php
  2. class gd_lib
  3. {
  4. #[是否使用GD生成水印或缩略图]
  5. var $isgd = true;
  6. var $quality = 80;#[图片质量]
  7. #[新图片的宽度和高度]
  8. var $width = 160;
  9. var $height = 120;
  10. #[补白处理]
  11. #[border:边框]
  12. #[color:边框的颜色]
  13. #[bgcolor:背景色,不要带#号,仅支持16进制]
  14. #[bgimg:背景图片,默认是空值]
  15. #[padding:间隔]
  16. var $border = 1;
  17. var $color = "DDDDDD";
  18. var $bgcolor = "";
  19. var $bgimg = "";
  20. var $padding = 5;
  21. #[版权处理]
  22. #[iscopyright:是否启用版权]
  23. #[mark:版权图片,如果使用图片版权,请在这里设置]
  24. #[position:版权放置的位置,默认是bottom-right]
  25. #[transparence:透明度,默认是80]
  26. var $iscopyright = true;
  27. var $mark = "qinggan.jpg";
  28. var $position = "bottom-right";
  29. var $transparence = 80;
  30. #[可用于整个图片要调用变量]
  31. var $filepath = "";
  32. var $imginfo;#[图片数据]
  33. #[是否使用裁剪法来生成缩略图]
  34. var $iscut = 0;
  35. #[如果水印图文件已经存在,是否覆盖]
  36. var $isrecover = true;
  37. function __construct($isgd=1,$quality=80)
  38. {
  39. $this->isgd = $isgd && function_exists("imagecreate") ? true : false;
  40. $this->quality = intval($quality);
  41. if(!$this->quality) $this->quality = 80;
  42. }
  43. #[兼容PHP4操作]
  44. function gd_lib($isgd=1,$quality=80)
  45. {
  46. $this->__construct($isgd,$quality);
  47. }
  48. #[参数设置]
  49. function Set($var,$val="")
  50. {
  51. $this->$var = $val;
  52. }
  53. function isgd($isgd=true)
  54. {
  55. $this->isgd = $isgd ? true : false;
  56. }
  57. #[设置补白操作]
  58. function Filler($border=1,$color="DDDDDD",$bgcolor="",$bgimg="",$padding=0)
  59. {
  60. $this->border = $border;
  61. $this->color = strlen($color) == 6 ? $color : "DDDDDD";
  62. $this->bgcolor = strlen($bgcolor) == 6 ? $bgcolor : "";
  63. $this->bgimg = $bgimg && file_exists($bgimg) ? $bgimg : "";
  64. $this->padding = intval($padding);
  65. }
  66. #[设置版权]
  67. function CopyRight($mark="qinggan.jpg",$position="bottom-right",$transparence=80)
  68. {
  69. $this->mark = $mark && file_exists($mark) ? $mark : "";
  70. $this->position = $this->_check_position($position);
  71. $this->transparence = $transparence;
  72. }
  73. #[设置新图片的宽度和高度值]
  74. function SetWH($width=160,$height=120)
  75. {
  76. $this->width = $width ? $width : 160;
  77. $this->height = $height ? $height : 120;
  78. }
  79. #[设置是否使用裁剪法来生成缩略图]
  80. function SetCut($iscut=0)
  81. {
  82. $this->iscut = $iscut;
  83. }
  84. #[判断是否写入版权]
  85. function iscopyright($iscopyright=true)
  86. {
  87. $this->iscopyright = $iscopyright ? true : false;
  88. }
  89. #[判断是否覆盖新图片]
  90. function isrecover($isrecover=true)
  91. {
  92. $this->isrecover = $isrecover ? true : false;
  93. }
  94. #
  95. #[根据提供图片生成新图片]
  96. #[source:源图必须含有路径]
  97. #[newpic:新图只能使用源图的路径]
  98. #[width:新图片的宽度]
  99. #[height:新图片的高度]
  100. function Create($source="",$newpic="",$width="",$height="")
  101. {
  102. if(!$this->isgd) return false;
  103. if(!file_exists($source)) return false;
  104. #[判断文件是否合法,不合法直接跳出]
  105. $chkext = strtolower(substr(basename($source),-4));
  106. if(strpos(",.jpg,.png,.gif,jpeg,",",".$chkext.",") === false) return false;
  107. $this->filepath = substr($source,0,-(strlen(basename($source))));
  108. if($newpic)
  109. {
  110. $newpic = str_replace(".jpg","",$newpic);
  111. $newpic = str_replace(".gif","",$newpic);
  112. $newpic = str_replace(".png","",$newpic);
  113. $newpic = str_replace(".jpeg","",$newpic);
  114. }
  115. $newpic = $this->_cc_picname($newpic);
  116. $this->imginfo = $this->GetImgInfo($source);#[取得图片的基本信息]
  117. #[判断新文件名是否存在,存在即再重命名一下]
  118. $recover = $this->isrecover;
  119. if(file_exists($this->filepath."/".$newpic.".".$this->imginfo["ext"]) && !$recover)
  120. {
  121. $newpic .= "_".substr(md5(rand(0,9999)),9,16);
  122. }
  123. #[设置新图的高度]
  124. $width = intval($width);
  125. $height = intval($height);
  126. if($width && $height)
  127. {
  128. $this->SetWH($width,$height);
  129. }
  130. else
  131. {
  132. $this->width = $width ? $width : $this->width;
  133. $this->height = $height ? $height : $this->height;
  134. }
  135. #[根据大图获取能生成的实际小图]
  136. //判断生成新图的方式
  137. if($this->iscut == 1 && $this->imginfo["width"] > $this->width && $this->imginfo["height"] > $this->height)
  138. {
  139. $getPicWH = $this->_cutimg();
  140. }
  141. else
  142. {
  143. //智能缩放法,该法基于宽度缩放,以方便存放在内容中的图片
  144. if($this->iscut == 2)
  145. {
  146. if($this->width >= $this->imginfo["width"])
  147. {
  148. $this->width = $this->imginfo["width"];
  149. $this->height = $this->imginfo["height"];
  150. }
  151. else
  152. {
  153. $this->height = round(($this->imginfo["height"] * $this->width)/$this->imginfo["width"]);
  154. }
  155. //file_put_contents($this->width."---".$this->height.".txt","ok");
  156. }
  157. $getPicWH = $this->_get_newpicWH();
  158. }
  159. if(!$getPicWH) return false;
  160. #[计算整个新图片的宽度和高度]
  161. $allpicheight = $this->height + ($this->padding*2) + ($this->border ? 2 : 0);
  162. $allpicwidth = $this->width + ($this->padding*2) + ($this->border ? 2 : 0);
  163. #[开始画图]
  164. return $this->_create_img($source,$newpic,$allpicwidth,$allpicheight,$getPicWH);
  165. }
  166. #[获取图片的相关数据]
  167. function GetImgInfo($picture="")
  168. {
  169. if(!$picture || !file_exists($picture)) return false;
  170. $infos = getimagesize($picture);
  171. $info["width"] = $infos[0];
  172. $info["height"] = $infos[1];
  173. $info["type"] = $infos[2];
  174. #[强制设置图片的类型]
  175. $info["ext"] = $infos[2] == 1 ? "gif" : ($infos[2] == 2 ? "jpg" : "png");
  176. #[设置图片的名称]
  177. $info["name"] = substr(basename($picture),0,strrpos(basename($picture),"."));
  178. return $info;
  179. }
  180. #[判断设置的位置是否正确]
  181. function _check_position($position="")
  182. {
  183. if(!$position) return "bottom-right";
  184. $position = strtolower($position);
  185. $check = ",top-left,top-middle,top-right";
  186. $check.= ",middle-left,middle-middle,middle-right";
  187. $check.= ",bottom-left,bottom-middle,bottom-right,";
  188. if(strpos($check,",".$position.",") !== false)
  189. {
  190. return $position;
  191. }
  192. else
  193. {
  194. return "bottom-right";
  195. }
  196. }
  197. #[判断或创建一个新的图片名称]
  198. function _cc_picname($name="",$length=10)
  199. {
  200. $length = intval($length);
  201. if($length<5)
  202. {
  203. $length = 5;
  204. }
  205. $newname = true;#[检测名称是否合法,不合法时将自动重新命名]
  206. if($name)
  207. {
  208. $newname = false;#[改变状态,设为不重命名]
  209. #$name = str_replace(strstr(".",$name),"",$name);
  210. $name = strtolower($name);#[全部变成小写的]
  211. $w = "abcdefghijklmnopqrstuvwxyz_0123456789";
  212. $length = strlen($name);
  213. if($length<1)
  214. {
  215. $newname = true;
  216. }
  217. else
  218. {
  219. for($i=0;$i<$length;$i++)
  220. {
  221. if(strpos($w,$name[$i]) === false)
  222. {
  223. $newname = true;#[检测到这一步,说明新文件名中带有不合法的字符,将重新命名]
  224. }
  225. }
  226. }
  227. }
  228. if($newname || !$name)
  229. {
  230. $string = md5(rand(0,9999)."-".rand(0,9999)."-".rand(0,9999));
  231. $name = substr($string,rand(0,(32-$length)),10);
  232. }
  233. return $name;
  234. }
  235. #[根据已提供的信息计算出新图的相关参数]
  236. function _get_newpicWH()
  237. {
  238. $info = ($this->imginfo["width"] && $this->imginfo["height"]) ? $this->imginfo : false;
  239. if(!$info) return false;
  240. if($this->width > $info["width"] && $this->height > $info["height"])
  241. {
  242. $array["width"] = $info["width"];
  243. $array["tempx"] = $info["width"];
  244. $array["tempy"] = $info["height"];
  245. $array["height"] = $info["height"];
  246. }
  247. else
  248. {
  249. #[判断原图和新图的宽高比的大小比例,以确定使用哪个为基准]
  250. $rate_width = $info["width"]/$this->width;
  251. $rate_height = $info["height"]/$this->height;
  252. if($rate_width>$rate_height)
  253. {
  254. $array["width"] = $this->width;
  255. $array["height"] = round(($this->width*$info["height"])/$info["width"]);
  256. }
  257. else
  258. {
  259. $array["height"] = $this->height;
  260. $array["width"] = round(($info["width"]*$this->height)/$info["height"]);
  261. }
  262. $array["tempx"] = $this->imginfo["width"];
  263. $array["tempy"] = $this->imginfo["height"];
  264. }
  265. $array["srcx"] = 0;
  266. $array["srcy"] = 0;
  267. return $array;
  268. }
  269. #[将十六进制转成RGB格式]
  270. function _to_rgb($color="")
  271. {
  272. if(!$color) return false;
  273. if(strlen($color) != 6) return false;
  274. $color = strtolower($color);
  275. $array["red"] = hexdec(substr($color,0,2));
  276. $array["green"] = hexdec(substr($color,2,2));
  277. $array["blue"] = hexdec(substr($color,4,2));
  278. return $array;
  279. }
  280. function _create_img($source,$newpic,$width,$height,$getpicWH)
  281. {
  282. $truecolor = function_exists("imagecreatetruecolor") ? true : false;
  283. $img_create = $truecolor ? "imagecreatetruecolor" : "imagecreate";
  284. $img = $img_create($width,$height);
  285. ImageAlphaBlending($img,true);
  286. #[颜色转成十进制]
  287. $bg = $this->_to_rgb($this->bgcolor);
  288. $bg["red"] = $bg["red"] ? $bg["red"] : 0;
  289. $bg["green"] = $bg["green"] ? $bg["green"] : 0;
  290. $bg["blue"] = $bg["blue"] ? $bg["blue"] : 0;
  291. $bgfill = imagecolorallocate($img,$bg["red"],$bg["green"],$bg["blue"]);
  292. #[填充背景色]
  293. imagefill($img,0,0,$bgfill);
  294. #[判断是否有背景框]
  295. if($this->bgimg)
  296. {
  297. $nbg_picImg = $this->_get_imgfrom($this->bgimg);
  298. $nbg_picInfo = $this->GetImgInfo($this->bgimg);
  299. imagecopy($img,$nbg_picImg,0,0,0,0,$nbg_picInfo["width"],$nbg_picInfo["height"]);
  300. }
  301. #[在图片上画-线条]
  302. if($this->border)
  303. {
  304. $bc = $this->_to_rgb($this->color);
  305. $bc["red"] = $bc["red"] ? $bc["red"] : 0;
  306. $bc["green"] = $bc["green"] ? $bc["green"] : 0;
  307. $bc["blue"] = $bc["blue"] ? $bc["blue"] : 0;
  308. #[设置距形框的颜色值]
  309. $bcolor = imagecolorallocate($img,$bc["red"],$bc["green"],$bc["blue"]);
  310. #[画一距矩形框]
  311. imagerectangle($img,0,0,$width-1,$height-1,$bcolor);
  312. }
  313. #[被框架的图片的位置]
  314. $picX = ($width-$getpicWH["width"])/2;
  315. $picY = ($height-$getpicWH["height"])/2;
  316. #[采集原图样本信息]
  317. $tmpImg = $this->_get_imgfrom($source);
  318. if(!$tmpImg) return false;
  319. $img_create = $truecolor ? "imagecopyresampled" : "imagecopyresized";
  320. $img_create($img,$tmpImg,$picX,$picY,$getpicWH["srcx"],$getpicWH["srcy"],$getpicWH["width"],$getpicWH["height"],$getpicWH["tempx"],$getpicWH["tempy"]);
  321. #[判断是否要求写入版权图片]
  322. if($this->iscopyright && $this->mark)
  323. {
  324. $npicImg = $this->_get_imgfrom($this->mark);
  325. $npicInfo = $this->GetImgInfo($this->mark);
  326. $getPosition = $this->_set_position($npicInfo,$width,$height);
  327. if($npicInfo["type"] == 3)
  328. {
  329. imagecopy($img,$npicImg,$getPosition["x"],$getPosition["y"],0,0,$npicInfo["width"],$npicInfo["height"]);
  330. }
  331. else
  332. {
  333. imagecopymerge($img,$npicImg,$getPosition["x"],$getPosition["y"],0,0,$npicInfo["width"],$npicInfo["height"],$this->transparence);
  334. }
  335. }
  336. #[如果新图片存在,则删除新图片]
  337. $newpicfile = $this->filepath.$newpic.".".$this->imginfo["ext"];
  338. if(file_exists($newpicfile))
  339. {
  340. @unlink($newpicfile);
  341. }
  342. #[写入数据]
  343. $this->_write_imgto($img,$newpicfile,$this->imginfo["type"]);
  344. imagedestroy($tmpImg);
  345. imagedestroy($img);
  346. #[销毁相框]
  347. if($this->bgimg)
  348. {
  349. imagedestroy($nbg_picImg);
  350. }
  351. #[销毁版权的图片]
  352. if($npicImg)
  353. {
  354. imagedestroy($npicImg);
  355. }
  356. return basename($newpicfile);#[返回生成的图片名称]
  357. }
  358. #[获取图片数据流信息]
  359. function _get_imgfrom($pic)
  360. {
  361. $info = $this->GetImgInfo($pic);
  362. if($info["type"] == 1 && function_exists("imagecreatefromgif"))
  363. {
  364. $img = imagecreatefromgif($pic);
  365. ImageAlphaBlending($img,true);
  366. }
  367. elseif($info["type"] == 2 && function_exists("imagecreatefromjpeg"))
  368. {
  369. $img = imagecreatefromjpeg($pic);
  370. ImageAlphaBlending($img,true);
  371. }
  372. elseif($info["type"] == 3 && function_exists("imagecreatefrompng"))
  373. {
  374. $img = imagecreatefrompng($pic);
  375. ImageAlphaBlending($img,true);
  376. }
  377. else
  378. {
  379. $img = "";
  380. }
  381. return $img;
  382. }
  383. function _write_imgto($temp_image,$newfile,$info_type)
  384. {
  385. if($info_type == 1)
  386. {
  387. imagegif($temp_image,$newfile);
  388. }
  389. elseif($info_type == 2)
  390. {
  391. //imagesavealpha($temp_image,true);
  392. imagejpeg($temp_image,$newfile,$this->quality);
  393. }
  394. elseif($info_type == 3)
  395. {
  396. imagepng($temp_image,$newfile);
  397. }
  398. else
  399. {
  400. #[如果不存在这些条件,那将文件改为png的缩略图]
  401. $newfile = $newfile.".png";
  402. if(file_exists($newfile))
  403. {
  404. unlink($newfile);
  405. }
  406. imagepng($temp_image,$newfile);
  407. }
  408. }
  409. function _set_position($npicInfo,$width,$height)
  410. {
  411. if(!$npicInfo) return array("x"=>0,"y"=>0);
  412. $x = $this->border ? 1 : 0;
  413. $y = $this->border ? 1 : 0;
  414. if($this->position == "top-left")
  415. {
  416. $x = $this->border ? 1 : 0;
  417. $y = $this->border ? 1 : 0;
  418. }
  419. elseif($this->position == "top-middle")
  420. {
  421. if($npicInfo["width"] < $width)
  422. {
  423. $x = ($width - $npicInfo["width"])/2 - ($this->border ? 1 : 0);
  424. }
  425. }
  426. elseif($this->position == "top-right")
  427. {
  428. if($npicInfo["width"] < $width)
  429. {
  430. $x = $width - $npicInfo["width"] - ($this->border ? 1 : 0);
  431. }
  432. }
  433. elseif($this->position == "middle-left")
  434. {
  435. if($npicInfo["height"] < $height)
  436. {
  437. $y = ($height - $npicInfo["height"])/2 - ($this->border ? 1 : 0);
  438. }
  439. }
  440. elseif($this->position == "middle-middle")
  441. {
  442. if($npicInfo["height"] < $height)
  443. {
  444. $y = ($height - $npicInfo["height"])/2 - ($this->border ? 1 : 0);
  445. }
  446. if($npicInfo["width"] < $width)
  447. {
  448. $x = ($width - $npicInfo["width"])/2 - ($this->border ? 1 : 0);
  449. }
  450. }
  451. elseif($this->position == "middle-right")
  452. {
  453. if($npicInfo["height"] < $height)
  454. {
  455. $y = ($height - $npicInfo["height"])/2 - ($this->border ? 1 : 0);
  456. }
  457. if($npicInfo["width"] < $width)
  458. {
  459. $x = $width - $npicInfo["width"] - ($this->border ? 1 : 0);
  460. }
  461. }
  462. elseif($this->position == "bottom-left")
  463. {
  464. if($npicInfo["height"] < $height)
  465. {
  466. $y = $height - $npicInfo["height"] - ($this->border ? 1 : 0);
  467. }
  468. }
  469. elseif($this->position == "bottom-middle")
  470. {
  471. if($npicInfo["height"] < $height)
  472. {
  473. $y = $height - $npicInfo["height"] - ($this->border ? 1 : 0);
  474. }
  475. if($npicInfo["width"] < $width)
  476. {
  477. $x = ($width - $npicInfo["width"])/2 - ($this->border ? 1 : 0);
  478. }
  479. }
  480. else
  481. {
  482. if($npicInfo["height"] < $height)
  483. {
  484. $y = $height - $npicInfo["height"] - ($this->border ? 1 : 0);
  485. }
  486. if($npicInfo["width"] < $width)
  487. {
  488. $x = $width - $npicInfo["width"] - ($this->border ? 1 : 0);
  489. }
  490. }
  491. return array("x"=>$x,"y"=>$y);
  492. }
  493. #[使用裁剪法根据已提供的信息计算出新图的相关参数]
  494. function _cutimg()
  495. {
  496. $width = $this->width;
  497. $height = $this->height;
  498. $info_width = $this->imginfo["width"];
  499. $info_height = $this->imginfo["height"];
  500. $info["width"] = $info_width ? $info_width : 1;
  501. $info["height"] = $info_height ? $info_height : 1;
  502. //判断是高度优先还是宽度优先
  503. //原图比例
  504. $info_rate = $info["width"]/$info["height"];
  505. //新生成图片的比例
  506. $new_rate = $width/$height;
  507. //如果原图比例大于新图比例,则新图以高度优先进行缩放,再进行裁剪
  508. if($info_rate > $new_rate)
  509. {
  510. $tempx = $info["height"] * $new_rate;
  511. $tempy = $info["height"];
  512. $srcx = ($info["width"] - $tempx) / 2;
  513. $srcy = 0;
  514. }
  515. else
  516. {
  517. $tempx = $info["width"];
  518. $tempy = $info["width"] / $new_rate;
  519. $srcx = 0;
  520. $srcy = ($info["height"] - $tempy) / 2;
  521. }
  522. $array["height"] = $this->height;
  523. $array["width"] = $this->width;
  524. $array["tempx"] = $tempx;
  525. $array["tempy"] = $tempy;
  526. $array["srcx"] = $srcx;
  527. $array["srcy"] = $srcy;
  528. return $array;
  529. }
  530. #[后台使用到的缩略图]
  531. function thumb($filename,$id=0)
  532. {
  533. $this->SetCut(0);
  534. $this->Filler(0,"FFFFFF","FFFFFF","","0");
  535. #[设置版权操作]
  536. $this->iscopyright(false);
  537. $this->SetWH(150,150);
  538. $newfile = "thumb".($id ? $id : basename($filename));
  539. return $this->Create($filename,$newfile);
  540. }
  541. }
  542. ?>