search
Homephp教程php手册一个经典实用的PHP图像处理类分享

这篇文章主要介绍了一个经典实用的PHP图像处理类分享,本文提供的PHP图像操作类可以满足网站中的大部分功能需求,如图片的缩放、加水印和裁剪等功能,需要的朋友可

本图像处理类可以完成对图片的缩放、加水印和裁剪的功能,支持多种图片类型的处理,缩放时进行优化等。

path = rtrim($path,"/")."/"; } /** * 对指定的图像进行缩放 * @param string $name 是需要处理的图片名称 * @param int $width 缩放后的宽度 * @param int $height 缩放后的高度 * @param string $qz 是新图片的前缀 * @return mixed 是缩放后的图片名称,失败返回false; */ function thumb($name, $width, $height,$qz="th_"){ /* 获取图片宽度、高度、及类型信息 */ $imgInfo = $this->getInfo($name); /* 获取背景图片的资源 */ $srcImg = $this->getImg($name, $imgInfo); /* 获取新图片尺寸 */ $size = $this->getNewSize($name,$width, $height,$imgInfo); /* 获取新的图片资源 */ $newImg = $this->kidOfImage($srcImg, $size,$imgInfo); /* 通过本类的私有方法,保存缩略图并返回新缩略图的名称,以"th_"为前缀 */ return $this->createNewImage($newImg, $qz.$name,$imgInfo); } /** * 为图片添加水印 * @param string $groundName 背景图片,即需要加水印的图片,暂只支持GIF,JPG,PNG格式 * @param string $waterName 图片水印,即作为水印的图片,暂只支持GIF,JPG,PNG格式 * @param int $waterPos 水印位置,有10种状态,0为随机位置; * 1为顶端居左,2为顶端居中,3为顶端居右; * 4为中部居左,5为中部居中,6为中部居右; * 7为底端居左,8为底端居中,9为底端居右; * @param string $qz 加水印后的图片的文件名在原文件名前面加上这个前缀 * @return mixed 是生成水印后的图片名称,失败返回false */ function waterMark($groundName, $waterName, $waterPos=0, $qz="wa_"){ /*获取水印图片是当前路径,还是指定了路径*/ $curpath = rtrim($this->path,"/")."/"; $dir = dirname($waterName); if($dir == "."){ $wpath = $curpath; }else{ $wpath = $dir."/"; $waterName = basename($waterName); } /*水印图片和背景图片必须都要存在*/ if(file_exists($curpath.$groundName) && file_exists($wpath.$waterName)){ $groundInfo = $this->getInfo($groundName); //获取背景信息 $waterInfo = $this->getInfo($waterName, $dir); //获取水印图片信息 /*如果背景比水印图片还小,就会被水印全部盖住*/ if(!$pos = $this->position($groundInfo, $waterInfo, $waterPos)){ echo '水印不应该比背景图片小!'; return false; } $groundImg = $this->getImg($groundName, $groundInfo); //获取背景图像资源 $waterImg = $this->getImg($waterName, $waterInfo, $dir); //获取水印图片资源 /* 调用私有方法将水印图像按指定位置复制到背景图片中 */ $groundImg = $this->copyImage($groundImg, $waterImg, $pos, $waterInfo); /* 通过本类的私有方法,保存加水图片并返回新图片的名称,默认以"wa_"为前缀 */ return $this->createNewImage($groundImg, $qz.$groundName, $groundInfo); }else{ echo '图片或水印图片不存在!'; return false; } } /** * 在一个大的背景图片中剪裁出指定区域的图片 * @param string $name 需要剪切的背景图片 * @param int $x 剪切图片左边开始的位置 * @param int $y 剪切图片顶部开始的位置 * @param int $width 图片剪裁的宽度 * @param int $height 图片剪裁的高度 * @param string $qz 新图片的名称前缀 * @return mixed 裁剪后的图片名称,失败返回false; */ function cut($name, $x, $y, $width, $height, $qz="cu_"){ $imgInfo=$this->getInfo($name); //获取图片信息 /* 裁剪的位置不能超出背景图片范围 */ if( (($x+$width) > $imgInfo['width']) || (($y+$height) > $imgInfo['height'])){ echo "裁剪的位置超出了背景图片范围!"; return false; } $back = $this->getImg($name, $imgInfo); //获取图片资源 /* 创建一个可以保存裁剪后图片的资源 */ $cutimg = imagecreatetruecolor($width, $height); /* 使用imagecopyresampled()函数对图片进行裁剪 */ imagecopyresampled($cutimg, $back, 0, 0, $x, $y, $width, $height, $width, $height); imagedestroy($back); /* 通过本类的私有方法,保存剪切图并返回新图片的名称,默认以"cu_"为前缀 */ return $this->createNewImage($cutimg, $qz.$name,$imgInfo); } /* 内部使用的私有方法,,用来确定水印图片的位置 */ private function position($groundInfo, $waterInfo, $waterPos){ /* 需要加水印的图片的长度或宽度比水印还小,无法生成水印 */ if( ($groundInfo["width"]$posX, "posY"=>$posY); } /* 内部使用的私有方法,用于获取图片的属性信息(宽度、高度和类型) */ private function getInfo($name, $path=".") { $spath = $path=="." ? rtrim($this->path,"/")."/" : $path.'/'; $data = getimagesize($spath.$name); $imgInfo["width"] = $data[0]; $imgInfo["height"] = $data[1]; $imgInfo["type"] = $data[2]; return $imgInfo; } /*内部使用的私有方法, 用于创建支持各种图片格式(jpg,gif,png三种)资源 */ private function getImg($name, $imgInfo, $path='.'){ $spath = $path=="." ? rtrim($this->path,"/")."/" : $path.'/'; $srcPic = $spath.$name; switch ($imgInfo["type"]) { case 1: //gif $img = imagecreatefromgif($srcPic); break; case 2: //jpg $img = imagecreatefromjpeg($srcPic); break; case 3: //png $img = imagecreatefrompng($srcPic); break; default: return false; break; } return $img; } /* 内部使用的私有方法,返回等比例缩放的图片宽度和高度,如果原图比缩放后的还小保持不变 */ private function getNewSize($name, $width, $height, $imgInfo){ $size["width"] = $imgInfo["width"]; //原图片的宽度 $size["height"] = $imgInfo["height"]; //原图片的高度 if($width $imgInfo["height"] * $size["height"]){ $size["height"] = round($imgInfo["height"]*$size["width"]/$imgInfo["width"]); }else{ $size["width"] = round($imgInfo["width"]*$size["height"]/$imgInfo["height"]); } return $size; } /* 内部使用的私有方法,用于保存图像,并保留原有图片格式 */ private function createNewImage($newImg, $newName, $imgInfo){ $this->path = rtrim($this->path,"/")."/"; switch ($imgInfo["type"]) { case 1: //gif $result = imageGIF($newImg, $this->path.$newName); break; case 2: //jpg $result = imageJPEG($newImg,$this->path.$newName); break; case 3: //png $result = imagePng($newImg, $this->path.$newName); break; } imagedestroy($newImg); return $newName; } /* 内部使用的私有方法,用于加水印时复制图像 */ private function copyImage($groundImg, $waterImg, $pos, $waterInfo){ imagecopy($groundImg, $waterImg, $pos["posX"], $pos["posY"], 0, 0, $waterInfo["width"],$waterInfo["height"]); imagedestroy($waterImg); return $groundImg; } /* 内部使用的私有方法,处理带有透明度的图片保持原样 */ private function kidOfImage($srcImg, $size, $imgInfo){ $newImg = imagecreatetruecolor($size["width"], $size["height"]); $otsc = imagecolortransparent($srcImg); if( $otsc >= 0 && $otsc

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!