php

位置:IT落伍者 >> php >> 浏览文章

php图像处理函数大全


发布日期:2018年01月06日
 
php图像处理函数大全
php图片处理代码分享包括缩放剪裁缩放翻转旋转透明锐化等需要的朋友可以参考下

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

获取图片属性
imagesx(res//宽度
imagesy(res//高度
getimagesize(文件路径)
返 回一个具有四个单元的数组索引 包含图像宽度的像素值索引 包含图像高度的像素值索引 是图像类型的标记 = GIF =  JPG = PNG = SWF = PSD = BMP = TIFF(intel byte order) =  TIFF(motorola byte order) = JPC = JP = JPX = JB = SWC  = IFF = WBMP = XBM这些标记与 PHP 新加的 IMAGETYPE 常量对应索引   是文本字符串内容为“height="yyy" width="xxx"”可直接用于 IMG 标记
销毁图像资源
imagedestroy(图片资源);

透明处理
PNGjpeg透明色都正常只有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/mapgif");

复制代码 代码如下:
<?PHP
/**
* 图片锐化处理
*/
$red= imagecolorallocate($img );

imageline($img $red);
imageellipse($img $red);
imagegif($img "/images/mapgif");
imagedestroy($img);
图片普通缩放
代码如下:

$filename="/images/heejpg";
$per=;
list($width $height)=getimagesize($filename);
$n_w=$width*$per;
$n_h=$width*$per;
$new=imagecreatetruecolor($n_w $n_h);
$img=imagecreatefromjpeg($filename);
//拷贝部分图像并调整
imagecopyresized($new $img $n_w $n_h $width $height);
//图像输出新图片另存为
imagejpeg($new "/images/heejpg");
imagedestroy($new);
imagedestroy($img);

图片等比例缩放没处理透明色
代码如下:
function thumn($background $width $height $newfile) {
list($s_w $s_h)=getimagesize($background);//获取原图片高度宽度
if ($width && ($s_w < $s_h)) {
$width = ($height / $s_h) * $s_w;
} else {
$height = ($width / $s_w) * $s_h;
}
$new=imagecreatetruecolor($width $height);
$img=imagecreatefromjpeg($background);
imagecopyresampled($new $img $width $height $s_w $s_h);
imagejpeg($new $newfile);
imagedestroy($new);
imagedestroy($img);
}
thumn("images/heejpg" "/images/heejpg");

gif透明色处理
代码如下:
function thumn($background $width $height $newfile) {
list($s_w $s_h)=getimagesize($background);
if ($width && ($s_w < $s_h)) {
$width = ($height / $s_h) * $s_w;
} else {
$height = ($width / $s_w) * $s_h;
}
$new=imagecreatetruecolor($width $height);
$img=imagecreatefromgif($background);
$otsc=imagecolortransparent($img);
if($otsc >= && $otst < imagecolorstotal($img)){//判断索引色
$tran=imagecolorsforindex($img $otsc);//索引颜色值
$newt=imagecolorallocate($new $tran["red"] $tran["green"] $tran["blue"]);
imagefill($new $newt);
imagecolortransparent($new $newt);
}
imagecopyresized($new $img $width $height $s_w $s_h);
imagegif($new $newfile);
imagedestroy($new);
imagedestroy($img);
}
thumn("images/mapgif" "/images/mapgif");


图片裁剪

复制代码 代码如下:
<?php
/**
* 图片裁剪处理
* edit by wwwjbxuecom
*/
function cut($background $cut_x $cut_y $cut_width $cut_height $location){
$back=imagecreatefromjpeg($background);
$new=imagecreatetruecolor($cut_width $cut_height);
imagecopyresampled($new $back $cut_x $cut_y $cut_width $cut_height$cut_width$cut_height);
imagejpeg($new $location);
imagedestroy($new);
imagedestroy($back);
}
cut("/images/heejpg" "/images/heejpg");
?>


图片加水印 文字水印

复制代码 代码如下:
<?PHP
/**
*
* 图片添加文字水印
*/

function mark_text($background $text $x $y){
$back=imagecreatefromjpeg($background);
$color=imagecolorallocate($back );
imagettftext($back $x $y $color "simkaittf" $text);
imagejpeg($back "/images/heejpg");
imagedestroy($back);
}
mark_text("/images/heejpg" "细说PHP" );
//图片水印
function mark_pic($background $waterpic $x $y){
$back=imagecreatefromjpeg($background);
$water=imagecreatefromgif($waterpic);
$w_w=imagesx($water);
$w_h=imagesy($water);
imagecopy($back $water $x $y $w_w $w_h);
imagejpeg($back"/images/heejpg");
imagedestroy($back);
imagedestroy($water);
}
mark_pic("/images/heejpg" "/images/gaolfgif" );


图片旋转

复制代码 代码如下:
<?PHP
/**
* 图片旋转
*/
$back=imagecreatefromjpeg("/images/heejpg");

$new=imagerotate($back );
imagejpeg($new "/images/heejpg");
?>


图片水平翻转垂直翻转

复制代码 代码如下:


<?php
/**
* 图片水平翻转 垂直翻转
*/
function turn_y($background $newfile){
$back=imagecreatefromjpeg($background);
$width=imagesx($back);
$height=imagesy($back);
$new=imagecreatetruecolor($width $height);
for($x=; $x < $width; $x++){
imagecopy($new $back $width$x $x $height);
}
imagejpeg($new $newfile);
imagedestroy($back);
imagedestroy($new);
}
function turn_x($background $newfile){
$back=imagecreatefromjpeg($background);
$width=imagesx($back);
$height=imagesy($back);
$new=imagecreatetruecolor($width $height);
for($y=; $y < $height; $y++){
imagecopy($new $back $height$y $y $width );
}
imagejpeg($new $newfile);
imagedestroy($back);
imagedestroy($new);
}
turn_y("/images/heejpg" "/images/heejpg");
turn_x("/images/heejpg" "/images/heejpg");
?>

               

上一篇:使用PHP编写的SVN类

下一篇:解析php session