php对图像的各种解决函数代码小结
发布时间:2022-07-22 12:45 所属栏目:121 来源:互联网
导读:php对图像的各种处理函数代码小结 一、创建图片资源 imagecreatetruecolor(width,height); imagecreatefromgif(图片名称); imagecreatefrompng(图片名称); imagecreatefromjpeg(图片名称);画出各种图像 imagegif(图片资源,保存路径); imagepng() imagejpeg()
php对图像的各种处理函数代码小结 一、创建图片资源 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(图片资源); 三、图片的裁剪 imagecopyresized() imagecopyresampled(); 四、加水印(文字、图片) 字符串编码转换string iconv ( string $in_charset , string $out_charset , string $str ) 五、图片旋转 imagerotate();//制定角度的图片翻转。 (编辑:ASP站长网) |
相关内容
网友评论
推荐文章
热点阅读