php常用图片处理类

我们经常在对图像操作时会要有水印,略缩图并且水印可以指定到可以选,1代表左上,2代表左中,3代表左右,4代表中左,5代表中中,6代表中右,7代表下做,8代表下中,9代表下右,0代表随机位置.

已知问题:1.在图片缩放功能中,使用imagecreatetruecolor函数创建画布,并使用透明处理算法,但PNG格式的图片无法透明,用imagecreate函数创建画布可以解决这个问题,但是缩放出来的图片色数太少了 .

type值:

(1):代表使用图片缩放功能,此时,$value1代表缩放后图片的宽度,$value2代表缩放后图片的高度.

(2):代表使用图片裁剪功能,此时,$value1代表裁剪开始点的坐标,例:从原点开始即是“0,0”前面是x轴后面是y轴,中间用,分隔,$value2代表裁剪的宽度和高度,同样也是“20,20”的形式使用.

(3):代表使用加图片水印功能,此时,$value1代表水印图片的文件名,$value2代表水印在图片中的位置,有10值个可以选,1代表左上,2代表左中,3代表左右,4代表中左,5代表中中,6代表中右,7代表下做,8代表下中,9代表下右,0代表随机位置.

php图片处理类代码如下:

  1. <?php
  2. class image{
  3. private $types; //使用的功能编号,1为图片缩放功能 2为图片裁剪功能 3,为图片加图片水印功能
  4. private $imgtype;//图片的格式
  5. private $image; //图片资源
  6. private $width;//图片宽度
  7. private $height;//图片高度
  8. private $value1;//根据所传type值的不同,$value1分别代表不同的值
  9. private $value2;//根据所传type值的不同,$value2分别代表不同的值
  10. private $endaddress;//输出后的地址+文件名
  11. function __construct($imageaddress, $types, $value1="", $value2="", $endaddress){
  12. $this->types=$types;
  13. $this->image=$this->imagesources($imageaddress);
  14. $this->width=$this->imagesizex();
  15. $this->height=$this->imagesizey();
  16. $this->value1=$value1;
  17. $this->value2=$value2;
  18. $this->endaddress=$endaddress;
  19. } //开源代码phpfensi.com
  20. function outimage(){ //根据传入type值的不同,输出不同的功能
  21. switch($this->types){
  22. case 1:
  23. $this->scaling();
  24. break;
  25. case 2:
  26. $this->clipping();
  27. break;
  28. case 3:
  29. $this->imagewater();
  30. break;
  31. default:
  32. return false;
  33. }
  34. }
  35. private function imagewater(){ //加图片水印功能
  36. //用函数获取水印文件的长和宽
  37. $imagearrs=$this->getimagearr($this->value1);
  38. //调用函数计算出水印加载的位置
  39. $positionarr=$this->position($this->value2, $imagearrs[0], $imagearrs[1]);
  40. //加水印
  41. imagecopy($this->image, $this->imagesources($this->value1), $positionarr[0], $positionarr[1], 0, 0, $imagearrs[0], $imagearrs[1]);
  42. //调用输出方法保存
  43. $this->output($this->image);
  44. }
  45. private function clipping(){ //图片裁剪功能
  46. //将传进来的值分别赋给变量
  47. list($src_x, $src_y)=explode(",", $this->value1);
  48. list($dst_w, $dst_h)=explode(",", $this->value2);
  49. if($this->width < $src_x+$dst_w || $this->height < $src_y+$dst_h){ //这个判断就是限制不能截取到图片外面去
  50. return false;
  51. }
  52. //创建新的画布资源
  53. $newimg=imagecreatetruecolor($dst_w, $dst_h);
  54. //进行裁剪
  55. imagecopyresampled($newimg, $this->image, 0, 0, $src_x, $src_y, $dst_w, $dst_h, $dst_w, $dst_h);
  56. //调用输出方法保存
  57. $this->output($newimg);
  58. }
  59. private function scaling(){ //图片缩放功能
  60. //获取等比缩放的宽和高
  61. $this-> proimagesize();
  62. //根据参数进行缩放,并调用输出函数保存处理后的文件
  63. $this->output($this->imagescaling());
  64. }
  65. private function imagesources($imgad){ //获取图片类型并打开图像资源
  66. $imagearray=$this->getimagearr($imgad);
  67. switch($imagearray[2]){
  68. case 1://gif
  69. $this->imgtype=1;
  70. $img=imagecreatefromgif($imgad);
  71. break;
  72. case 2://jpeg
  73. $this->imgtype=2;
  74. $img=imagecreatefromjpeg($imgad);
  75. break;
  76. case 3://png
  77. $this->imgtype=3;
  78. $img=imagecreatefrompng($imgad);
  79. break;
  80. default:
  81. return false;
  82. }
  83. return $img;
  84. }
  85. private function imagesizex(){ //获得图片宽度
  86. return imagesx($this->image);
  87. }
  88. private function imagesizey(){ //获取图片高度
  89. return imagesy($this->image);
  90. }
  91. private function proimagesize(){ //计算等比缩放的图片的宽和高
  92. if($this->value1 && ($this->width < $this->height)) { //等比缩放算法
  93. $this->value1=round(($this->value2/ $this->height)*$this->width);
  94. }else{
  95. $this->value2=round(($this->value1/ $this->width) * $this->height);
  96. }
  97. }
  98. private function imagescaling(){//图像缩放功能,返回处理后的图像资源
  99. $newimg=imagecreatetruecolor($this->value1, $this->value2);
  100. $tran=imagecolortransparent($this->image);//处理透明算法
  101. if($tran >= 0 && $tran < imagecolorstotal($this->image)){
  102. $tranarr=imagecolorsforindex($this->image, $tran);
  103. $newcolor=imagecolorallocate($newimg, $tranarr['red'], $tranarr['green'], $tranarr['blue']);
  104. imagefill($newimg, 0, 0, $newcolor);
  105. imagecolortransparent($newimg, $newcolor);
  106. }
  107. imagecopyresampled($newimg, $this->image, 0, 0, 0, 0, $this->value1, $this->value2, $this->width, $this->height);
  108. return $newimg;
  109. }
  110. private function output($image){//输出图像
  111. switch($this->imgtype){
  112. case 1:
  113. imagegif($image, $this->endaddress);
  114. break;
  115. case 2:
  116. imagejpeg($image, $this->endaddress);
  117. break;
  118. case 3:
  119. imagepng($image, $this->endaddress);
  120. break;
  121. default:
  122. return false;
  123. }
  124. }
  125. private function getimagearr($imagesou){//返回图像属性数组方法
  126. return getimagesize($imagesou);
  127. }
  128. private function position($num, $width, $height){//根据传入的数字返回一个位置的坐标,$width和$height分别代表插入图像的宽和高
  129. switch($num){
  130. case 1:
  131. $positionarr[0]=0;
  132. $positionarr[1]=0;
  133. break;
  134. case 2:
  135. $positionarr[0]=($this->width-$width)/2;
  136. $positionarr[1]=0;
  137. break;
  138. case 3:
  139. $positionarr[0]=$this->width-$width;
  140. $positionarr[1]=0;
  141. break;
  142. case 4:
  143. $positionarr[0]=0;
  144. $positionarr[1]=($this->height-$height)/2;
  145. break;
  146. case 5:
  147. $positionarr[0]=($this->width-$width)/2;
  148. $positionarr[1]=($this->height-$height)/2;
  149. break;
  150. case 6:
  151. $positionarr[0]=$this->width-$width;
  152. $positionarr[1]=($this->height-$height)/2;
  153. break;
  154. case 7:
  155. $positionarr[0]=0;
  156. $positionarr[1]=$this->height-$height;
  157. break;
  158. case 8:
  159. $positionarr[0]=($this->width-$width)/2;
  160. $positionarr[1]=$this->height-$height;
  161. break;
  162. case 9:
  163. $positionarr[0]=$this->width-$width;
  164. $positionarr[1]=$this->height-$height;
  165. break;
  166. case 0:
  167. $positionarr[0]=rand(0, $this->width-$width);
  168. $positionarr[1]=rand(0, $this->height-$height);
  169. break;
  170. }
  171. return $positionarr;
  172. }
  173. function __destruct(){
  174. imagedestroy($this->image);
  175. }
  176. }
  177. ?>