PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

php图像处理函数大全(缩放、剪裁、缩放、翻转、旋转、透明、锐化的实例总结)

原创
2016-06-13 11:28:59 714浏览

一、创建图片资源
imagecreatetruecolor(width,height);
imagecreatefromgif(图片名称);
imagecreatefrompng(图片名称);
imagecreatefromjpeg(图片名称);画出各种图像 imagegif(图片资源,保存路径);
imagepng()
imagejpeg();

二、获取图片属性
imagesx(res//宽度
imagesy(res//高度
getimagesize(文件路径)
返回一个具有四个单元的数组。索引 0 包含图像宽度的像素值,索引 1 包含图像高度的像素值。索引 2 是图像类型的标记:1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM。这些标记与 PHP 4.3.0 新加的 IMAGETYPE 常量对应。索引 3 是文本字符串,内容为“height="yyy" width="xxx"”,可直接用于 IMG 标记。
销毁图像资源
imagedestroy(图片资源);

三、透明处理
PNG、jpeg透明色都正常,只有gif不正常
imagecolortransparent(resource image [,int color])//将某个颜色设置成透明色
imagecolorstotal()
imagecolorforindex();

四、图片的裁剪
imagecopyresized()
imagecopyresampled();

五、加水印(文字、图片)
字符串编码转换string iconv ( string $in_charset , string $out_charset , string $str )

六、图片旋转
imagerotate();//制定角度的图片翻转

七、图片的翻转
沿X轴 沿Y轴翻转

八、锐化
imagecolorsforindex()
imagecolorat()
在图片上画图形 $img=imagecreatefromgif("./images/map.gif");

     
 = imagecolorallocate(, 255, 0, 0 
 imageline(, 0, 0, 100, 100,  imageellipse(, 200, 100, 100, 100,  imagegif(, "./images/map2.gif" imagedestroy(  复制代码 代码如下:
 
 ="./images/hee.jpg" =0.3 (, )=( =* =* =imagecreatetruecolor(,  =imagecreatefromjpeg( 
 imagecopyresized(, ,0, 0,0, 0,, , ,  
 imagejpeg(, "./images/hee2.jpg" imagedestroy( imagedestroy( 
  复制代码 代码如下:
 
  thumn(, , ,  (, )=();
  ( && (   = ( / ) *  }   = ( / ) *   =imagecreatetruecolor(,  =imagecreatefromjpeg( imagecopyresampled(, , 0, 0, 0, 0, , , ,  imagejpeg(,  imagedestroy( imagedestroy(  thumn("images/hee.jpg", 200, 200, "./images/hee3.jpg" 
  复制代码 代码如下:
 
  thumn(, , ,  (, )=(  ( && (   = ( / ) *  }   = ( / ) *   =imagecreatetruecolor(,  =imagecreatefromgif( =imagecolortransparent( ( >=0 &&  )){
 =imagecolorsforindex(, );
 =imagecolorallocate(, ["red"], ["green"], ["blue" imagefill(, 0, 0,  imagecolortransparent(,   imagecopyresized(, , 0, 0, 0, 0, , , ,  imagegif(
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。