gd.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. define('InEmpireCMSGd',TRUE);
  3. //原文件,新文件,宽度,高度,维持比例
  4. function ResizeImage($big_image_name, $new_name, $max_width = 400, $max_height = 400, $resize = 1){
  5. $returnr['file']='';
  6. $returnr['filetype']='';
  7. if($temp_img_type = @getimagesize($big_image_name)) {preg_match('/\/([a-z]+)$/i', $temp_img_type[mime], $tpn); $img_type = $tpn[1];}
  8. else {preg_match('/\.([a-z]+)$/i', $big_image_name, $tpn); $img_type = $tpn[1];}
  9. $all_type = array(
  10. "jpg" => array("create"=>"ImageCreateFromjpeg", "output"=>"imagejpeg" , "exn"=>".jpg"),
  11. "gif" => array("create"=>"ImageCreateFromGIF" , "output"=>"imagegif" , "exn"=>".gif"),
  12. "jpeg" => array("create"=>"ImageCreateFromjpeg", "output"=>"imagejpeg" , "exn"=>".jpg"),
  13. "png" => array("create"=>"imagecreatefrompng" , "output"=>"imagepng" , "exn"=>".png"),
  14. "wbmp" => array("create"=>"imagecreatefromwbmp", "output"=>"image2wbmp" , "exn"=>".wbmp")
  15. );
  16. $func_create = $all_type[$img_type]['create'];
  17. if(empty($func_create) or !function_exists($func_create))
  18. {
  19. return $returnr;
  20. }
  21. //输出
  22. $func_output = $all_type[$img_type]['output'];
  23. $func_exname = $all_type[$img_type]['exn'];
  24. if(($func_exname=='.gif'||$func_exname=='.png'||$func_exname=='.wbmp')&&!function_exists($func_output))
  25. {
  26. $func_output='imagejpeg';
  27. $func_exname='.jpg';
  28. }
  29. $big_image = $func_create($big_image_name);
  30. $big_width = imagesx($big_image);
  31. $big_height = imagesy($big_image);
  32. if($big_width <= $max_width and $big_height <= $max_height)
  33. {
  34. $func_output($big_image, $new_name.$func_exname);
  35. $returnr['file']=$new_name.$func_exname;
  36. $returnr['filetype']=$func_exname;
  37. return $returnr;
  38. }
  39. $ratiow = $max_width / $big_width;
  40. $ratioh = $max_height / $big_height;
  41. if($resize == 1) {
  42. if($big_width >= $max_width and $big_height >= $max_height)
  43. {
  44. if($big_width > $big_height)
  45. {
  46. $tempx = $max_width / $ratioh;
  47. $tempy = $big_height;
  48. $srcX = ($big_width - $tempx) / 2;
  49. $srcY = 0;
  50. } else {
  51. $tempy = $max_height / $ratiow;
  52. $tempx = $big_width;
  53. $srcY = ($big_height - $tempy) / 2;
  54. $srcX = 0;
  55. }
  56. } else {
  57. if($big_width > $big_height)
  58. {
  59. $tempx = $max_width;
  60. $tempy = $big_height;
  61. $srcX = ($big_width - $tempx) / 2;
  62. $srcY = 0;
  63. } else {
  64. $tempy = $max_height;
  65. $tempx = $big_width;
  66. $srcY = ($big_height - $tempy) / 2;
  67. $srcX = 0;
  68. }
  69. }
  70. } else {
  71. $srcX = 0;
  72. $srcY = 0;
  73. $tempx = $big_width;
  74. $tempy = $big_height;
  75. }
  76. $new_width = ($ratiow > 1) ? $big_width : $max_width;
  77. $new_height = ($ratioh > 1) ? $big_height : $max_height;
  78. if(function_exists("imagecopyresampled"))
  79. {
  80. $temp_image = imagecreatetruecolor($new_width, $new_height);
  81. imagecopyresampled($temp_image, $big_image, 0, 0, $srcX, $srcY, $new_width, $new_height, $tempx, $tempy);
  82. } else {
  83. $temp_image = imagecreate($new_width, $new_height);
  84. imagecopyresized($temp_image, $big_image, 0, 0, $srcX, $srcY, $new_width, $new_height, $tempx, $tempy);
  85. }
  86. $func_output($temp_image, $new_name.$func_exname);
  87. ImageDestroy($big_image);
  88. ImageDestroy($temp_image);
  89. $returnr['file']=$new_name.$func_exname;
  90. $returnr['filetype']=$func_exname;
  91. return $returnr;
  92. }
  93. /*
  94. * 功能:图片加水印 (水印支持图片或文字)
  95. * 参数:
  96. * $groundImage 背景图片,即需要加水印的图片,暂只支持GIF,JPG,PNG格式;
  97. * $waterPos 水印位置,有10种状态,0为随机位置;
  98. * 1为顶端居左,2为顶端居中,3为顶端居右;
  99. * 4为中部居左,5为中部居中,6为中部居右;
  100. * 7为底端居左,8为底端居中,9为底端居右;
  101. * $waterImage 图片水印,即作为水印的图片,暂只支持GIF,JPG,PNG格式;
  102. * $waterText 文字水印,即把文字作为为水印,支持ASCII码,不支持中文;
  103. * $textFont 文字大小,值为1、2、3、4或5,默认为5;
  104. * $textColor 文字颜色,值为十六进制颜色值,默认为#FF0000(红色);
  105. *
  106. * 注意:Support GD 2.0,Support FreeType、GIF Read、GIF Create、JPG 、PNG
  107. * $waterImage 和 $waterText 最好不要同时使用,选其中之一即可,优先使用 $waterImage。
  108. * 当$waterImage有效时,参数$waterString、$stringFont、$stringColor均不生效。
  109. * 加水印后的图片的文件名和 $groundImage 一样。
  110. */
  111. function imageWaterMark($groundImage,$waterPos=0,$waterImage="",$waterText="",$textFont=5,$textColor="#FF0000",$myfontpath="../data/mask/cour.ttf",$w_pct,$w_quality){
  112. global $fun_r,$editor;
  113. if($editor==1){$a='../';}
  114. elseif($editor==2){$a='../../';}
  115. elseif($editor==3){$a='../../../';}
  116. else{$a='';}
  117. $waterImage=$waterImage?$a.$waterImage:'';
  118. $myfontpath=$myfontpath?$a.$myfontpath:'';
  119. $isWaterImage = FALSE;
  120. $formatMsg = $fun_r['synotdotype'];
  121. //读取水印文件
  122. if(!empty($waterImage) && file_exists($waterImage))
  123. {
  124. $isWaterImage = TRUE;
  125. $water_info = getimagesize($waterImage);
  126. $water_w = $water_info[0];//取得水印图片的宽
  127. $water_h = $water_info[1];//取得水印图片的高
  128. switch($water_info[2])//取得水印图片的格式
  129. {
  130. case 1:$water_im = imagecreatefromgif($waterImage);break;
  131. case 2:$water_im = imagecreatefromjpeg($waterImage);break;
  132. case 3:$water_im = imagecreatefrompng($waterImage);break;
  133. default:echo $formatMsg;return "";
  134. }
  135. }
  136. //读取背景图片
  137. if(!empty($groundImage) && file_exists($groundImage))
  138. {
  139. $ground_info = getimagesize($groundImage);
  140. $ground_w = $ground_info[0];//取得背景图片的宽
  141. $ground_h = $ground_info[1];//取得背景图片的高
  142. switch($ground_info[2])//取得背景图片的格式
  143. {
  144. case 1:$ground_im = imagecreatefromgif($groundImage);break;
  145. case 2:$ground_im = imagecreatefromjpeg($groundImage);break;
  146. case 3:$ground_im = imagecreatefrompng($groundImage);break;
  147. default:echo $formatMsg;return "";
  148. }
  149. }
  150. else
  151. {
  152. echo $fun_r['synotdoimg'];
  153. return "";
  154. }
  155. //水印位置
  156. if($isWaterImage)//图片水印
  157. {
  158. $w = $water_w;
  159. $h = $water_h;
  160. $label = "图片的";
  161. }
  162. else//文字水印
  163. {
  164. $temp = imagettfbbox(ceil($textFont*2.5),0,$myfontpath,$waterText);//取得使用 TrueType 字体的文本的范围
  165. $w = $temp[2] - $temp[6];
  166. $h = $temp[3] - $temp[7];
  167. unset($temp);
  168. $label = "文字区域";
  169. }
  170. if( ($ground_w<$w) || ($ground_h<$h) )
  171. {
  172. echo $fun_r['sytoosmall'];
  173. return '';
  174. }
  175. switch($waterPos)
  176. {
  177. case 0://随机
  178. $posX = rand(0,($ground_w - $w));
  179. $posY = rand(0,($ground_h - $h));
  180. break;
  181. case 1://1为顶端居左
  182. $posX = 0;
  183. $posY = 0;
  184. break;
  185. case 2://2为顶端居中
  186. $posX = ($ground_w - $w) / 2;
  187. $posY = 0;
  188. break;
  189. case 3://3为顶端居右
  190. $posX = $ground_w - $w;
  191. $posY = 0;
  192. break;
  193. case 4://4为中部居左
  194. $posX = 0;
  195. $posY = ($ground_h - $h) / 2;
  196. break;
  197. case 5://5为中部居中
  198. $posX = ($ground_w - $w) / 2;
  199. $posY = ($ground_h - $h) / 2;
  200. break;
  201. case 6://6为中部居右
  202. $posX = $ground_w - $w;
  203. $posY = ($ground_h - $h) / 2;
  204. break;
  205. case 7://7为底端居左
  206. $posX = 0;
  207. $posY = $ground_h - $h;
  208. break;
  209. case 8://8为底端居中
  210. $posX = ($ground_w - $w) / 2;
  211. $posY = $ground_h - $h;
  212. break;
  213. case 9://9为底端居右
  214. $posX = $ground_w - $w;
  215. $posY = $ground_h - $h;
  216. break;
  217. default://随机
  218. $posX = rand(0,($ground_w - $w));
  219. $posY = rand(0,($ground_h - $h));
  220. break;
  221. }
  222. //设定图像的混色模式
  223. imagealphablending($ground_im, true);
  224. if($isWaterImage)//图片水印
  225. {
  226. if($water_info[2]==3)
  227. {
  228. imagecopy($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h);//拷贝水印到目标文件
  229. }
  230. else
  231. {
  232. imagecopymerge($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h,$w_pct);//拷贝水印到目标文件
  233. }
  234. }
  235. else//文字水印
  236. {
  237. if( !empty($textColor) && (strlen($textColor)==7) )
  238. {
  239. $R = hexdec(substr($textColor,1,2));
  240. $G = hexdec(substr($textColor,3,2));
  241. $B = hexdec(substr($textColor,5));
  242. }
  243. else
  244. {
  245. echo $fun_r['synotfontcolor'];
  246. return "";
  247. }
  248. imagestring ( $ground_im, $textFont, $posX, $posY, $waterText, imagecolorallocate($ground_im, $R, $G, $B));
  249. }
  250. //生成水印后的图片
  251. @unlink($groundImage);
  252. switch($ground_info[2])//取得背景图片的格式
  253. {
  254. case 1:imagegif($ground_im,$groundImage);break;
  255. case 2:imagejpeg($ground_im,$groundImage,$w_quality);break;
  256. case 3:imagepng($ground_im,$groundImage);break;
  257. default:echo $formatMsg;return "";
  258. }
  259. //释放内存
  260. if(isset($water_info)) unset($water_info);
  261. if(isset($water_im)) imagedestroy($water_im);
  262. unset($ground_info);
  263. imagedestroy($ground_im);
  264. }
  265. ?>