当前位置:Gxlcms > PHP教程 > PHP文件夹遍历,图片等比例压缩

PHP文件夹遍历,图片等比例压缩

时间:2021-07-01 10:21:17 帮助过:28人阅读

  1. /**
  2. * 来源:互联网
  3. */
  4. class image
  5. {
  6. var $w_pct = 100; //透明度
  7. var $w_quality = 100; //质量
  8. var $w_minwidth = 500; //最小宽
  9. var $w_minheight = 500; //最小高
  10. var $interlace = 0; //图像是否为隔行扫描的
  11. var $fontfile ; //字体文件
  12. var $w_img ; //默认水印图
  13. function __construct()
  14. {
  15. $this->fontfile = $_SERVER['DOCUMENT_ROOT'].'/public/fonts/simhei.ttf';
  16. $this->w_img = '';
  17. }
  18. function image()
  19. {
  20. $this->__construct();
  21. }
  22. function info($img)
  23. {
  24. $imageinfo = getimagesize($img); //返回图像信息数组 0=>宽的像素 1=>高的像素 2=>是图像类型的标记 3 =>是文本字符串,内容为“height="yyy" width="xxx"”,
  25. if($imageinfo === false) return false;
  26. $imagetype = strtolower(substr(image_type_to_extension($imageinfo[2]),1)); //获取图像文件类型 $imageinfo[2]是图像类型的标记
  27. $imagesize = filesize($img); //图像大小
  28. $info = array(
  29. 'width'=>$imageinfo[0],
  30. 'height'=>$imageinfo[1],
  31. 'type'=>$imagetype,
  32. 'size'=>$imagesize,
  33. 'mime'=>$imageinfo['mime']
  34. );
  35. return $info;
  36. }
  37. /**
  38. * 缩略图
  39. *
  40. * @param string $image
  41. * @param string $filename
  42. * @param int $maxwidth
  43. * @param int $maxheight
  44. * @param string $suffix
  45. * @param int $autocut
  46. * @return string
  47. */
  48. function thumb($image, $filename = '',$maxwidth = 50, $maxheight = 50, $suffix='_thumb', $autocut = 0)
  49. {
  50. if( !$this->check($image)) return false;
  51. $info = $this->info($image); //获取图片信息
  52. if($info === false) return false;
  53. $srcwidth = $info['width']; //源图宽
  54. $srcheight = $info['height']; //源图高
  55. $pathinfo = pathinfo($image);
  56. $type = $pathinfo['extension']; //取得扩展名
  57. if(!$type) $type = $info['type']; //如果没有取到,用$info['type']
  58. $type = strtolower($type);
  59. unset($info);
  60. $scale = min($maxwidth/$srcwidth, $maxheight/$srcheight); //获取缩略比例
  61. //获取按照源图的比列
  62. $createwidth = $width = (int) ($srcwidth*$scale);//取得缩略宽();
  63. $createheight = $height = (int)($srcheight*$scale);//(); //取得缩略高
  64. $psrc_x = $psrc_y = 0;
  65. if($autocut) //按照缩略图的比例来获取
  66. {
  67. if($maxwidth/$maxheight<$srcwidth/$srcheight && $maxheight>=$height) //如果缩略图按比列比源图窄的话
  68. {
  69. $width = $maxheight/$height*$width; //宽按照相应比例做处理
  70. $height = $maxheight;// //高不变
  71. }
  72. elseif($maxwidth/$maxheight>$srcwidth/$srcheight && $maxwidth>=$width)//如果缩略图按比列比源图宽的话
  73. {
  74. $height = $maxwidth/$width*$height;//
  75. $width = $maxwidth;
  76. }
  77. if($maxwidth == '55'){
  78. $width = '55';
  79. $createwidth = '55';
  80. }
  81. if($maxwidth == '110'){
  82. $width = '110';
  83. $createwidth = '110';
  84. }
  85. }
  86. if($srcwidth<='280' && $maxwidth != '110'){
  87. $createwidth= $srcwidth;
  88. $createheight = $srcheight;
  89. }
  90. $createfun = 'imagecreatefrom'.($type=='jpg' ? 'jpeg' : $type); //找到不同的图像处理函数
  91. $srcimg = $createfun($image); //返回图像标识符
  92. if($type != 'gif' && function_exists('imagecreatetruecolor')){
  93. $thumbimg = imagecreatetruecolor($createwidth, $createheight); //新建一个真彩色图像
  94. }else{
  95. if($maxwidth == '110' && $srcheight >= $srcwidth){
  96. $height1 = 72;
  97. $thumbimg = imagecreate($width, $height1); //新建一个基于调色板的图像
  98. }elseif ($maxwidth == '110' && $srcheight <= $srcwidth){
  99. $width1 = 110;
  100. $thumbimg = imagecreate($width1, $height); //新建一个基于调色板的图像
  101. }else{
  102. $thumbimg = imagecreate($width, $height); //新建一个基于调色板的图像
  103. }
  104. }
  105. if(function_exists('imagecopyresampled')){ //重采样拷贝部分图像并调整大小,真彩
  106. //imagecopyresampled(新图,源图,新图左上角x距离,新图左上角y距离,源图左上角x距离,源图左上角y距离,新图宽,新图高,源图宽,源图高)
  107. if($maxwidth == '110' && $srcheight >= $srcwidth){
  108. $psrc_x = 0;
  109. $psrc_yz = $height/2;
  110. $psrc_y = $psrc_yz;
  111. $width = '110';
  112. }
  113. if($maxwidth == '110' && $srcheight >= $srcwidth && $srcheight>= '72' && $srcwidth <= '110'){
  114. $psrc_x = 0;
  115. $psrc_yz = $height/2;
  116. $psrc_y = $psrc_yz;
  117. $width = '110';
  118. }
  119. if($maxheight == '72' && $srcheight <= $srcwidth && $srcheight<= '72' && $srcwidth >= '110'){
  120. $cha = ($maxheight-$srcheight)/2;
  121. $psrc_y = -($cha);
  122. $width = $srcwidth;
  123. $height = '72';
  124. $srcheight = '72';
  125. }
  126. imagecopyresampled($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height, $srcwidth, $srcheight);
  127. }else{ //拷贝部分图像并调整大小,调色板
  128. imagecopyresized($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height, $srcwidth, $srcheight);
  129. }
  130. if($type=='gif' || $type=='png')
  131. {
  132. //imagecolorallocate 为一幅图像分配颜色
  133. $background_color = imagecolorallocate($thumbimg, 0, 255, 0); // 给基于调色板的图像填充背景色, 指派一个绿色
  134. // imagecolortransparent 将某个颜色定义为透明色
  135. imagecolortransparent($thumbimg, $background_color); // 设置为透明色,若注释掉该行则输出绿色的图
  136. }
  137. // imageinterlace 激活或禁止隔行扫描
  138. if($type=='jpg' || $type=='jpeg') imageinterlace($thumbimg, $this->interlace);
  139. $imagefun = 'image'.($type=='jpg' ? 'jpeg' : $type);
  140. //imagejpeg imagegif imagepng
  141. if(empty($filename)) $filename = substr($image, 0, strrpos($image, '.')).$suffix.'.'.$type; //获取文件名
  142. //aaa.gif aaa_thumb.gif
  143. $imagefun($thumbimg, $filename); //新建图像
  144. imagedestroy($thumbimg); //销毁缩略图
  145. imagedestroy($srcimg); //销毁源图
  146. return $filename;
  147. }
  148. /**
  149. * 限制宽或高
  150. *
  151. * @param string $image
  152. * @param int $maxwidth
  153. * @param int $maxheight
  154. * @param string $suffix
  155. * @return string
  156. */
  157. function thumb3($image,$maxwidth = 0, $maxheight = 0, $suffix='_thumb')
  158. {
  159. if( !$this->check($image)) return false;
  160. $info = $this->info($image); //获取图片信息
  161. if($info === false) return false;
  162. $srcwidth = $info['width']; //源图宽
  163. $srcheight = $info['height']; //源图高
  164. $pathinfo = pathinfo($image);
  165. $type = $pathinfo['extension']; //取得扩展名
  166. if(!$type) $type = $info['type']; //如果没有取到,用$info['type']
  167. $type = strtolower($type);
  168. unset($info);
  169. if($maxwidth==0){
  170. $scale = $maxheight/$srcheight;
  171. if($scale<1){
  172. $createwidth = $srcwidth*$scale;
  173. $createheight = $maxheight;
  174. }else{
  175. $createwidth = $srcwidth;
  176. $createheight = $srcheight;
  177. }
  178. }
  179. if($maxheight==0){
  180. $scale = $maxwidth/$srcwidth;
  181. if($scale<1){
  182. $createwidth = $maxwidth;
  183. $createheight = $srcheight*$scale;
  184. }else{
  185. $createwidth = $srcwidth;
  186. $createheight = $srcheight;
  187. }
  188. }
  189. $psrc_x = $psrc_y = 0;
  190. $createfun = 'imagecreatefrom'.($type=='jpg' ? 'jpeg' : $type); //找到不同的图像处理函数
  191. $srcimg = $createfun($image); //返回图像标识符
  192. if($type != 'gif' && function_exists('imagecreatetruecolor')){
  193. $thumbimg = imagecreatetruecolor($createwidth, $createheight); //新建一个真彩色图像
  194. }else{
  195. $thumbimg = imagecreate($createwidth, $createheight); //新建一个基于调色板的图像
  196. }
  197. if(function_exists('imagecopyresampled')){ //重采样拷贝部分图像并调整大小,真彩
  198. //imagecopyresampled(新图,源图,新图左上角x距离,新图左上角y距离,源图左上角x距离,源图左上角y距离,新图宽,新图高,源图宽,源图高)
  199. imagecopyresampled($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $createwidth, $createheight, $srcwidth, $srcheight);
  200. }else{ //拷贝部分图像并调整大小,调色板
  201. imagecopyresized($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $createwidth, $createheight, $srcwidth, $srcheight);
  202. }
  203. if($type=='gif' || $type=='png')
  204. {
  205. //imagecolorallocate 为一幅图像分配颜色
  206. $background_color = imagecolorallocate($thumbimg, 0, 255, 0); // 给基于调色板的图像填充背景色, 指派一个绿色
  207. // imagecolortransparent 将某个颜色定义为透明色
  208. imagecolortransparent($thumbimg, $background_color); // 设置为透明色,若注释掉该行则输出绿色的图
  209. }
  210. // imageinterlace 激活或禁止隔行扫描
  211. if($type=='jpg' || $type=='jpeg') imageinterlace($thumbimg, $this->interlace);
  212. $imagefun = 'image'.($type=='jpg' ? 'jpeg' : $type);
  213. //imagejpeg imagegif imagepng
  214. $filename = substr($image, 0, strrpos($image, '.')).$suffix.'.'.$type; //获取文件名
  215. //aaa.gif aaa_thumb.gif
  216. $imagefun($thumbimg, $filename); //新建图像
  217. imagedestroy($thumbimg); //销毁缩略图
  218. imagedestroy($srcimg); //销毁源图
  219. return $filename;
  220. }
  221. /**
  222. * 生成特定尺寸缩略图 解决原版缩略图不能满足特定尺寸的问题 PS:会裁掉图片不符合缩略图比例的部分
  223. * @static
  224. * @access public
  225. * @param string $image 原图
  226. * @param string $type 图像格式
  227. * @param string $thumbname 缩略图文件名
  228. * @param string $maxWidth 宽度
  229. * @param string $maxHeight 高度
  230. * @param boolean $interlace 启用隔行扫描
  231. * @return void
  232. */
  233. static function thumb2($image, $thumbname, $type='', $maxWidth=200, $maxHeight=50, $interlace=true) {
  234. // 获取原图信息
  235. $info = Image::getImageInfo($image);
  236. if ($info !== false) {
  237. $srcWidth = $info['width'];
  238. $srcHeight = $info['height'];
  239. $type = empty($type) ? $info['type'] : $type;
  240. $type = strtolower($type);
  241. $interlace = $interlace ? 1 : 0;
  242. unset($info);
  243. $scale = max($maxWidth / $srcWidth, $maxHeight / $srcHeight); // 计算缩放比例
  244. //判断原图和缩略图比例 如原图宽于缩略图则裁掉两边 反之..
  245. if($maxWidth / $srcWidth > $maxHeight / $srcHeight){
  246. //高于
  247. $srcX = 0;
  248. $srcY = ($srcHeight - $maxHeight / $scale) / 2 ;
  249. $cutWidth = $srcWidth;
  250. $cutHeight = $maxHeight / $scale;
  251. }else{
  252. //宽于
  253. $srcX = ($srcWidth - $maxWidth / $scale) / 2;
  254. $srcY = 0;
  255. $cutWidth = $maxWidth / $scale;
  256. $cutHeight = $srcHeight;
  257. }
  258. // 载入原图
  259. $createFun = 'ImageCreateFrom' . ($type == 'jpg' ? 'jpeg' : $type);
  260. $srcImg = $createFun($image);
  261. //创建缩略图
  262. if ($type != 'gif' && function_exists('imagecreatetruecolor'))
  263. $thumbImg = imagecreatetruecolor($maxWidth, $maxHeight);
  264. else
  265. $thumbImg = imagecreate($maxWidth, $maxHeight);
  266. // 复制图片
  267. if (function_exists("ImageCopyResampled"))
  268. imagecopyresampled($thumbImg, $srcImg, 0, 0, $srcX, $srcY, $maxWidth, $maxHeight, $cutWidth, $cutHeight);
  269. else
  270. imagecopyresized($thumbImg, $srcImg, 0, 0, $srcX, $srcY, $maxWidth, $maxHeight, $cutWidth, $cutHeight);
  271. if ('gif' == $type || 'png' == $type) {
  272. //imagealphablending($thumbImg, false);//取消默认的混色模式
  273. //imagesavealpha($thumbImg,true);//设定保存完整的 alpha 通道信息
  274. $background_color = imagecolorallocate($thumbImg, 0, 255, 0); // 指派一个绿色
  275. imagecolortransparent($thumbImg, $background_color); // 设置为透明色,若注释掉该行则输出绿色的图
  276. }
  277. // 对jpeg图形设置隔行扫描
  278. if ('jpg' == $type || 'jpeg' == $type)
  279. imageinterlace($thumbImg, $interlace);
  280. // 生成图片
  281. $imageFun = 'image' . ($type == 'jpg' ? 'jpeg' : $type);
  282. @chmod(dirname($thumbname),0777);
  283. $imageFun($thumbImg, $thumbname);
  284. imagedestroy($thumbImg);
  285. imagedestroy($srcImg);
  286. return $thumbname;
  287. }
  288. return false;
  289. }
  290. /**
  291. * 取得图像信息
  292. * @static
  293. * @access public
  294. * @param string $image 图像文件名
  295. * @return mixed
  296. */
  297. static function getImageInfo($img) {
  298. $imageInfo = getimagesize($img);
  299. if ($imageInfo !== false) {
  300. $imageType = strtolower(substr(image_type_to_extension($imageInfo[2]), 1));
  301. $imageSize = filesize($img);
  302. $info = array(
  303. "width" => $imageInfo[0],
  304. "height" => $imageInfo[1],
  305. "type" => $imageType,
  306. "size" => $imageSize,
  307. "mime" => $imageInfo['mime']
  308. );
  309. return $info;
  310. } else {
  311. return false;
  312. }
  313. }
  314. //watermark(源图,生成文件,生成位置,水印文件,水印文本,背景色)
  315. function watermark($source, $target = '', $w_pos = 9, $w_img = '', $w_text = '', $w_font = 12, $w_color = '#cccccc',$x='',$y='')
  316. {
  317. if( !$this->check($source)) return false;
  318. if(!$target) $target = $source;
  319. if ($w_img == '' && $w_text == '')
  320. $w_img = $this->w_img;
  321. $source_info = getimagesize($source);
  322. $source_w = $source_info[0]; //获取宽
  323. $source_h = $source_info[1]; //获取高
  324. if($source_w < $this->w_minwidth || $source_h < $this->w_minheight) return false; //宽和高达不到要求直接返回
  325. switch($source_info[2]) //新建图片
  326. {
  327. case 1 :
  328. $source_img = imagecreatefromgif($source);
  329. break;
  330. case 2 :
  331. $source_img = imagecreatefromjpeg($source);
  332. break;
  333. case 3 :
  334. $source_img = imagecreatefrompng($source);
  335. break;
  336. default :
  337. return false;
  338. }
  339. if(!empty($w_img) && file_exists($w_img)) //水印文件
  340. {
  341. $ifwaterimage = 1; //是否水印图
  342. $water_info = getimagesize($w_img); //水印信息
  343. $width = $water_info[0];
  344. $height = $water_info[1];
  345. switch($water_info[2])
  346. {
  347. case 1 :
  348. $water_img = imagecreatefromgif($w_img);
  349. break;
  350. case 2 :
  351. $water_img = imagecreatefromjpeg($w_img);
  352. break;
  353. case 3 :
  354. $water_img = imagecreatefrompng($w_img);
  355. break;
  356. default :
  357. return;
  358. }
  359. }
  360. else
  361. {
  362. $ifwaterimage = 0;
  363. //imagettfbbox 本函数计算并返回一个包围着 TrueType 文本范围的虚拟方框的像素大小。
  364. //imagettfbbox ( 字体大小, 字体角度, 字体文件,文件 )
  365. // echo $this->fontfile;
  366. $temp = imagettfbbox(ceil($w_font*1.6), 0, $this->fontfile, $w_text);//取得使用 truetype 字体的文本的范围
  367. $width = $temp[4] - $temp[6]; //右上角 X 位置 - 左上角 X 位置
  368. $height = $temp[3] - $temp[5]; //右下角 Y 位置- 右上角 Y 位置
  369. unset($temp);
  370. }
  371. switch($w_pos)
  372. {
  373. case 0: //随机位置
  374. $wx = rand(0,($source_w - $width));
  375. $wy = rand(0,($source_h - $height));
  376. break;
  377. case 1: //左上角
  378. $wx = 25;
  379. $wy = 25;
  380. break;
  381. case 2: //上面中间位置
  382. $wx = ($source_w - $width) / 2;
  383. $wy = 0;
  384. break;
  385. case 3: //右上角
  386. $wx = $source_w - $width;
  387. $wy = 0;
  388. break;
  389. case 4: //左面中间位置
  390. $wx = 0;
  391. $wy = ($source_h - $height) / 2;
  392. break;
  393. case 5: //中间位置
  394. $wx = ($source_w - $width) / 2;
  395. $wy = ($source_h - $height) / 2;
  396. break;
  397. case 6: //底部中间位置
  398. $wx = ($source_w - $width) / 2;
  399. $wy = $source_h - $height;
  400. break;
  401. case 7: //左下角
  402. $wx = 0;
  403. $wy = $source_h - $height;
  404. break;
  405. case 8: //右面中间位置
  406. $wx = $source_w - $width;
  407. $wy = ($source_h - $height) /2;
  408. break;
  409. case 9: //右下角
  410. $wx = $source_w - $width;
  411. $wy = $source_h - $height ;
  412. break;
  413. default: //随机
  414. $wx = rand(0,($source_w - $width));
  415. $wy = rand(0,($source_h - $height));
  416. break;
  417. case 10://自定义位置
  418. $wx = $x;
  419. $wy = $y;
  420. case 11: //底部中间位置--手工客专用
  421. $wx = ($source_w - $width) / 2;
  422. $wy = $source_h - $height-50;
  423. break;
  424. break;
  425. }
  426. if($ifwaterimage) //如果有水印图
  427. {
  428. //imagecopymerge 拷贝并合并图像的一部分
  429. //参数(源图,水印图,拷贝到源图x位置,拷贝到源图y位置,从水印图x位置,从水印图y位置,高,宽,透明度)
  430. //imagecopymerge($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $this->w_pct);
  431. imagecopy($source_img,$water_img,$wx,$wy,0,0,$width,$height);
  432. }
  433. else
  434. {
  435. if(!empty($w_color) && (strlen($w_color)==7))
  436. {
  437. $r = hexdec(substr($w_color,1,2)); //获取红色
  438. $g = hexdec(substr($w_color,3,2)); //获取绿色
  439. $b = hexdec(substr($w_color,5)); //获取蓝色
  440. }
  441. else
  442. {
  443. return;
  444. }
  445. //imagecolorallocate 基于调色板的图像填充背景色
  446. //imagestring 水平地画一行字符串
  447. //imagestring(源图,字体大小,位置X,位置Y,文字,颜色)
  448. //参数($image, float $size, float $angle, int $x, int $y, int $color, string $fontfile, string $text)
  449. imagettftext($source_img,$w_font,0,$wx,$wy,imagecolorallocate($source_img,$r,$g,$b),$this->fontfile,$w_text);
  450. //imagestring($source_img,$w_font,$wx,$wy,$w_text,imagecolorallocate($source_img,$r,$g,$b));
  451. }
  452. //输出到文件或者浏览器
  453. switch($source_info[2])
  454. {
  455. case 1 :
  456. imagegif($source_img, $target); //以 GIF 格式将图像输出到浏览器或文件
  457. break;
  458. case 2 :
  459. imagejpeg($source_img, $target, $this->w_quality); //以 JPEG 格式将图像输出到浏览器或文件
  460. break;
  461. case 3 :
  462. imagepng($source_img, $target); //以 PNG 格式将图像输出到浏览器或文件
  463. break;
  464. default :
  465. return;
  466. }
  467. if(isset($water_info))
  468. {
  469. unset($water_info); //销毁
  470. }
  471. if(isset($water_img))
  472. {
  473. imagedestroy($water_img); //销毁
  474. }
  475. unset($source_info);
  476. imagedestroy($source_img);
  477. return true;
  478. }
  479. //gd库必须存在,后缀为jpg|jpeg|gif|png,文件存在,imagecreatefromjpeg或者imagecreatefromgif存在
  480. function check($image)
  481. {
  482. return extension_loaded('gd') &&
  483. preg_match("/\.(JPG|JPEG|PNG|GIF|jpg|jpeg|gif|png)/i", $image, $m) &&
  484. file_exists($image) &&
  485. function_exists('imagecreatefrom'.($m[1] == 'jpg' ? 'jpeg' : $m[1]));
  486. //imagecreatefromjpeg
  487. //imagecreatefromgif
  488. //imagecreatefrompng
  489. }
  490. }
  491. /**
  492. 缩略图
  493. 1.新建一个图像资源 通过 imagecreatefromgif imagecreatefromjpeg imagecreatefrompng
  494. 2.imagecopyresampled 拷贝图像,并调整大小
  495. 水印:图片水印,文字水印
  496. 1. 创建图像
  497. 2.加水印
  498. 图片水印:imagecopymerge 把2张图合并在一起
  499. 文字水印:imagettftext 向图像写入文字
  500. */
  501. error_reporting(0);
  502. $hostdir = dirname(__FILE__);
  503. $filesnames = scandir($hostdir.'/desktop');
  504. $img = new image();
  505. foreach($filesnames as $name){
  506. if($name != '.' && $name != '..'){
  507. $imgPath = $hostdir.'/desktop/';
  508. $imgsize = getimagesize($imgPath.$name);
  509. $imgInfo = explode('.',$name);
  510. $imginfo2 = explode('_',$imgInfo[0]);
  511. if($imginfo2[count($imginfo2)-1] != 'small'){
  512. $img_small = $imgPath.$imgInfo[0].'_small.'.$imgInfo[1];
  513. $img->thumb2($imgPath.$name,$img_small,'',$imgsize[0]/4,$imgsize[1]/4);
  514. }
  515. }
  516. }

等比例, PHP

人气教程排行