搜索
首页后端开发php教程如何实现php代码处理图片

如何实现php代码处理图片

May 16, 2018 am 11:59 AM
php图片处理

本篇文章主要介绍如何实现php代码处理图片,感兴趣的朋友参考下,希望对大家有所帮助。

一、 图片缩放代码

非等比例图片缩放代码

$fileNames='./images/hee.jpg';
list($s_w,$s_h)=getimagesize($fileNames);
$per=0.3;
$n_w=$s_w*$per;
$n_h=$s_h*$per;
$s_img=imagecreatefromjpeg($fileNames);
$n_img=imagecreatetruecolor($n_w,$n_h);
imagecopyresized($n_img,$s_img,0,0,0,0,$n_w,$n_h,$s_w,$s_h);
header("Content-Type:image/jpeg");
imagejpeg($n_img,'./images/hee2.jpg');
imagedestroy($n_img);
imagedestroy($s_img);
function sf($backgroung,$bl,$location){
list($width,$height)=getimagesize($backgroung);
$n_w=$width*$bl;
$n_h=$height*$bl;
$s_img=imagecreatefromjpeg($backgroung);
$n_img=imagecreatetruecolor($n_w,$n_h);
imagecopyresized($n_img,$s_img,0,0,0,0,$n_w,$n_h,$width,$height);
header("Content-Type:image/jpeg");
imagejpeg($n_img,$location);
imagedestroy($s_img);
imagedestroy($n_img);
}
//sf('./images/hee.jpg',0.3,'./images/hee9.jpg');

等比例图片缩放(并且加了透明色处理) 

function imagesf($backgroung,$n_w,$n_h,$newFiles){
list($s_w,$s_h,$imagetype)=getimagesize($backgroung);
//等比例缩放固定算法
if ($n_w && ($s_w < $s_h)) {
$n_w = ($n_h / $s_h) * $s_w;
} else {
$n_h = ($n_w / $s_w) * $s_h;
}
if($imagetype==2){
$s_img=imagecreatefromjpeg($backgroung);
}elseif($imagetype==3){
$s_img=imagecreatefrompng($backgroung);
}elseif($imagetype==1){
$s_img=imagecreatefromgif($backgroung);
}else{
echo "php 不支持这中图片类型!!";
}
$n_img=imagecreatetruecolor($n_w,$n_h);
//取得原图形的索引
$img_index=imagecolortransparent($s_img);
//判断原图形索引是否在图形调色板的数目范围内(调色板数目 0~255);
if($img_index>=0 && $img_index<imagecolorstotal($s_img)){
//返回一个具有 red,green,blue 和 alpha 的键名的关联数组,包含了指定颜色索引的相应的值
$trans=imagecolorsforindex($s_img,$img_index);
//print_r($trans); Array ( [red] => 255 [green] => 255 [blue] => 255 [alpha] => 127 )
//取原图的颜色,给新图分配颜色
$n_color=imagecolorallocate($n_img,$trans[&#39;red&#39;],$trans[&#39;green&#39;],$trans[&#39;blue&#39;]);
imagefill($n_img,0,0,$n_color);
//把获取到的颜色,设置为新图的透明色
imagecolortransparent($n_img,$n_color);
}
//imagecopyresampled($n_img,$s_img,0,0,0,0,$n_w,$n_h,$s_w,$s_h);
if(imagetypes()& IMG_JPG){
header("Content-Type:image/jpeg");
imagejpeg($n_img,$newFiles);
}elseif(imagetypes()& IMG_PNG){
header("Content-Type:image/png");
imagepng($n_img,$newFiles);
}elseif(imagetypes()& IMG_GIF){
header("Content-Type:image/gif");
imagegif($n_img,$newFiles);
}else{
echo "php 不支持这中图片类型!!";
}
imagedestroy($s_img);
imagedestroy($n_img);
}
imagesf(&#39;./images/map.gif&#39;,200,200,&#39;./images/map2.gif&#39;);





二、 图片裁剪代码

图片裁剪

function imagecut($backgroung,$cut_x,$cut_y,$cut_width,$cut_hight,$fileNames){
list(,,$imagetype)=getimagesize($backgroung);
if($imagetype==1){
$s_img=imagecreatefromgif($backgroung);
}elseif($imagetype==2){
$s_img=imagecreatefromjpeg($backgroung);
}elseif($imagetype==2){
$s_img=imagecreatefrompng($backgroung);
}else{
echo "php 不支持这种图片类型!!";
}
$n_img=imagecreatetruecolor($cut_width,$cut_hight);
imagecopyresized($n_img,$s_img,0,0,$cut_x,$cut_y,$cut_width,$cut_hight,$cut_width,$cut_hight);
if(imagetypes() & IMG_GIF){
header("Content-Type:image/gif");
imagegif($n_img,$fileNames);
}elseif(imagetypes() & IMG_JPG){
header("Content-Type:image/jpeg");
imagejpeg($n_img,$fileNames);
}elseif(imagetypes() & IMG_PNG){
header("Content-Type:image/png");
imagepng($n_img,$fileNames);
}else{
echo "php 不支持这种图片类型!!";
}
}
//imagecut(&#39;./images/hee.jpg&#39;,52, 47, 345, 330,&#39;./images/hee4.jpg&#39;);
function cut($backgroung,$x,$y,$cut_width,$cut_hight,$location){
$s_img=imagecreatefromjpeg($backgroung);
$n_img=imagecreatetruecolor($cut_width,$cut_hight);
imagecopy($n_img,$s_img,0,0,$x,$y,$cut_width,$cut_hight);
header("Content-Type:image/jpeg");
imagejpeg($n_img,$location);
imagedestroy($s_img);
imagedestroy($n_img);
}
//cut(&#39;./images/hee.jpg&#39;,52, 47, 345, 330,&#39;./images/hee8.jpg&#39;);



图片裁剪并对裁剪后的图片缩放,不是等比例图片缩放(就是拷贝部分图像并调整大小) imagecopyresized() — 拷贝部分图像并调整大小

imagecopyresampled() — 重采样拷贝部分图像并调整大小

function cutsf($backgroung,$x,$y,$cut_width,$cut_hight,$n_w,$n_h,$location){
$s_img=imagecreatefromjpeg($backgroung);
$n_img=imagecreatetruecolor($n_w,$n_h);
imagecopyresized($n_img,$s_img,0,0,$x,$y,$n_w,$n_h,$cut_width,$cut_hight);
header("Content-Type:image/jpeg");
imagejpeg($n_img,$location);
imagedestroy($s_img);
imagedestroy($n_img);
}
cutsf(&#39;./images/hee.jpg&#39;,52, 47, 345, 330,200,200,&#39;./images/hee10.jpg&#39;);





三、 图片加水印:文字水印和图像水印代码

图片加文字水印
function mark_text($backgroung,$x,$y,$text,$fileNames){
list(,,$imagetype)=getimagesize($backgroung);
if($imagetype == 1){
$s_img=imagecreatefromgif($backgroung);
}elseif($imagetype == 2){
$s_img=imagecreatefromjpeg($backgroung);
}elseif($imagetype == 3){
$s_img=imagecreatefrompng($backgroung);
}
$green=imagecolorallocate($s_img,0,255,0);
imagettftext($s_img,20,0,$x,$y,$green,&#39;./font/msyh.ttf&#39;,$text);
if(imagetypes() & IMG_GIF){
header("Content-Type:image/gif");
imagegif($s_img,$fileNames);
}elseif(imagetypes() & IMG_JPG){
header("Content-Type:image/jpeg");
imagejpeg($s_img,$fileNames);
}elseif(imagetypes() & IMG_PNG){
header("Content-Type:image/png");
imagepng($s_img,$fileNames);
}
imagedestroy($s_img);
}
$text=iconv(&#39;gb2312&#39;,&#39;utf-8&#39;,&#39;细说PHP&#39;);
//mark_text(&#39;./images/hee.jpg&#39;,150,250,$text,&#39;./images/hee5.jpg&#39;);


图片加图像水印

function mark_pic($backgroung,$x,$y,$waterpic,$fileNames){
$s_img=imagecreatefromjpeg($backgroung);
$waterpic_img=imagecreatefromgif($waterpic);
$waterpic_w=imagesx($waterpic_img);
$waterpic_h=imagesy($waterpic_img);
imagecopy( $s_img,  $waterpic_img, $x,$y, 0,0, $waterpic_w,$waterpic_h);
header("Content-Type:image/jpeg");
imagejpeg($s_img,$fileNames);
imagedestroy($s_img);
imagedestroy($waterpic_img);
}
//mark_pic(&#39;./images/hee.jpg&#39;,50,200,&#39;./images/gaolf.gif&#39;,&#39;./images/hee6.jpg&#39;);





四、 图片旋转代码
图片旋转 resource imagerotate() — 用给定角度旋转图像,返回新资源
function imagexz($backgroung,$angle,$location){
$s_img=imagecreatefromjpeg($backgroung);
$n_img=imagerotate($s_img,$angle,0);
header("Content-Type:image/jpeg");
imagejpeg($n_img,$location);
imagedestroy($s_img);
imagedestroy($n_img);
}
imagexz(&#39;./images/hee.jpg&#39;,360,&#39;images/hee10.jpg&#39;); //90 180 270 360






五、 图片翻转

图片沿Y轴翻转  就是左右对调
function turn_y($backgroung,$newFiles){
$s_img=imagecreatefromjpeg($backgroung);
$width=imagesx($s_img);
$height=imagesy($s_img);
$n_img=imagecreatetruecolor($width,$height);
for( $x=0; $x<$width; $x++ ){
imagecopy($n_img,$s_img, $width-$x-1,0, $x,0, 1,$height);
}
header("Content-Type:image/jpeg");
imagejpeg($n_img,$newFiles);
imagedestroy($s_img);
imagedestroy($n_img);
}
//turn_y(&#39;./images/hee.jpg&#39;,&#39;./images/hee11.jpg&#39;);



图片沿x轴翻转  就是上下对调
function turn_x($backgroung,$newFiles){
$s_img=imagecreatefromjpeg($backgroung);
$width=imagesx($s_img);
$height=imagesy($s_img);
$n_img=imagecreatetruecolor($width,$height);
for( $y=0; $y<$height; $y++ ){
imagecopy($n_img,$s_img, 0,$height-$y-1, 0,$y, $width,1);
}
header("Content-Type:image/jpeg");
imagejpeg($n_img,$newFiles);
imagedestroy($s_img);
imagedestroy($n_img);
}
//turn_x(&#39;./images/hee.jpg&#39;,&#39;./images/hee12.jpg&#39;);





六、 图片锐化
function sharp($background, $degree, $save){
$back=imagecreatefromjpeg($background);
$b_x=imagesx($back);
$b_y=imagesy($back);
$dst=imagecreatefromjpeg($background);
for($i=$b_x-1; $i>0; $i--){
for($j=$b_y-1; $j>0; $j--){
$b_clr1=imagecolorsforindex($back, imagecolorat($back, $i-1, $j-1));
$b_clr2=imagecolorsforindex($back, imagecolorat($back, $i, $j));
$r=intval($b_clr2["red"]+$degree*($b_clr2["red"]-$b_clr1["red"]));
$g=intval($b_clr2["green"]+$degree*($b_clr2["green"]-$b_clr1["green"]));
$b=intval($b_clr2["blue"]+$degree*($b_clr2["blue"]-$b_clr1["blue"]));
$r=min(255, max($r, 0));
$g=min(255, max($g, 0));
$b=min(255, max($b, 0));
if(($d_clr=imagecolorexact($dst, $r, $g, $b))==-1){
$d_clr=Imagecolorallocate($dst, $r, $g, $b);
}
imagesetpixel($dst, $i, $j, $d_clr);
}
}
imagejpeg($dst, $save);
imagedestroy($back);
imagedestroy($dst);
}
sharp("./images/hee.jpg", 20, "./images/hee15.jpg");



图片锐化(解析原理)(先取得原图的颜色,然后把原图的颜色锐化,最后在把锐化后的颜色赋给原图)

#解析开始:
#1 创建要锐化的图片资源
#eg:$s_img=imagecreatefromjpeg('./images/hee.jpg');
#2 获取图片资源的宽、高,创建两层循环(外层控制宽 内层控制高)  对每一个像素进行锐化 
#eg:$width=imagesx($s_img);
# $height=imagesy($s_img);
# for($i=$width-1; $i>0; $i--){
#   for($j=$height-1; $j>0; $j--){
#   
#   }
#   }
#3 在内层循环里对每一个像素颜色进行锐化(写在内层循环):
#3.1 用函数$color=imagecolorsforindex()取得图片索引的颜色,即取得当前颜色和取得上一个颜色
#eg:  $s_img_color1=imagecolorsforindex($s_img , imagecolorat($s_img , $i-1, $j-1));//上一个颜色
#  $s_img_color2=imagecolorsforindex($s_img , imagecolorat($s_img , $i, $j));//当前颜色
#3.2 固定算法对取得的颜色进行锐化   比如锐化20:$degree=20 
#eg:$r=intval($color["red"]+$degree*($color["red"]-$color["red"]));
# $g=intval($s_img_color2["green"]+$degree*($s_img_color2["green"]-$s_img_color1["green"]));
# $b=intval($s_img_color2["blue"]+$degree*($s_img_color2["blue"]-$s_img_color1["blue"]));
#3.3 把取得的RGB颜色控制在0~255正常范围内
#$r=min(255, max($r, 0));
#$g=min(255, max($g, 0));
#$b=min(255, max($b, 0));
#4 把锐化后的每一个像素颜色重新赋给原图的每一个像素颜色(写在内层循环)
#4.1 取得锐化后颜色的索引:$rh_color
#eg:if( ($rh_color=imagecolorexact($s_img,$r,$g,$b)) ==-1){
# $rh_color=imagecolorallocate($s_img,$r,$g,$b);
# }
#4.2 把锐化后的每一个像素颜色重新赋给原图的每一个像素颜色
eg:imagesetpixel($s_img, $i, $j, $rh_color);
#5 保存图片资源(写在循环外)
#eg:imagejpeg($s_img'./images/hee16.jpg');
#6 关闭图片资源(写在循环外)
#eg:imagedestroy($s_img);
#解析结束


根据解决在写一遍图片锐化代码

function sharp($background, $degree, $location){
#step 1 创建图片资源
$s_img=imagecreatefromjpeg($background);
#step 2 获取图片资源的宽高
$b_x=imagesx($s_img);
$b_y=imagesy($s_img);
#step 3 两层循环进行锐化  外层控制宽 内层控制高
for( $i=$b_x-1; $i>0; $i-- ){
for( $j=$b_y-1; $j>0; $j-- ){
#step 4 取得图片索引的颜色:当前颜色和上一个颜色
$s_img_color1=imagecolorsforindex($s_img, imagecolorat($s_img, $i-1, $j-1));
$s_img_color2=imagecolorsforindex($s_img, imagecolorat($s_img, $i, $j));
#step 5 固定算法对取得的颜色进行锐化
$r=intval($s_img_color2["red"]+$degree*($s_img_color2["red"]-$s_img_color1["red"]));
$g=intval($s_img_color2["green"]+$degree*($s_img_color2["green"]-$s_img_color1["green"]));
$b=intval($s_img_color2["blue"]+$degree*($s_img_color2["blue"]-$s_img_color1["blue"]));
#step 6 把取得的RGB颜色控制在0~255正常范围内
$r=min(255, max($r, 0));
$g=min(255, max($g, 0));
$b=min(255, max($b, 0));
#step 7 取得锐化后颜色的索引
if( ($d_clr=imagecolorexact($s_img,$r,$g,$b)) ==-1){
$d_clr=imagecolorallocate($s_img,$r,$g,$b);
}
#step 8 把锐化后的颜色重新赋给图片资源的每一个像素
imagesetpixel($s_img, $i, $j, $d_clr);
}
}
imagejpeg($s_img,$location);
imagedestroy($s_img);
}
sharp(&#39;./images/hee.jpg&#39;,50,&#39;./images/hee16.jpg&#39;);

相关推荐:

JS的图片处理与合成详解

JavaScript关于图片处理与合成的方法详解

PHP进行批量图片处理时程序执行超时

以上是如何实现php代码处理图片的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
PHP:服务器端脚本语言的简介PHP:服务器端脚本语言的简介Apr 16, 2025 am 12:18 AM

PHP是一种服务器端脚本语言,用于动态网页开发和服务器端应用程序。1.PHP是一种解释型语言,无需编译,适合快速开发。2.PHP代码嵌入HTML中,易于网页开发。3.PHP处理服务器端逻辑,生成HTML输出,支持用户交互和数据处理。4.PHP可与数据库交互,处理表单提交,执行服务器端任务。

PHP和网络:探索其长期影响PHP和网络:探索其长期影响Apr 16, 2025 am 12:17 AM

PHP在过去几十年中塑造了网络,并将继续在Web开发中扮演重要角色。1)PHP起源于1994年,因其易用性和与MySQL的无缝集成成为开发者首选。2)其核心功能包括生成动态内容和与数据库的集成,使得网站能够实时更新和个性化展示。3)PHP的广泛应用和生态系统推动了其长期影响,但也面临版本更新和安全性挑战。4)近年来的性能改进,如PHP7的发布,使其能与现代语言竞争。5)未来,PHP需应对容器化、微服务等新挑战,但其灵活性和活跃社区使其具备适应能力。

为什么要使用PHP?解释的优点和好处为什么要使用PHP?解释的优点和好处Apr 16, 2025 am 12:16 AM

PHP的核心优势包括易于学习、强大的web开发支持、丰富的库和框架、高性能和可扩展性、跨平台兼容性以及成本效益高。1)易于学习和使用,适合初学者;2)与web服务器集成好,支持多种数据库;3)拥有如Laravel等强大框架;4)通过优化可实现高性能;5)支持多种操作系统;6)开源,降低开发成本。

揭穿神话:PHP真的是一种死语吗?揭穿神话:PHP真的是一种死语吗?Apr 16, 2025 am 12:15 AM

PHP没有死。1)PHP社区积极解决性能和安全问题,PHP7.x提升了性能。2)PHP适合现代Web开发,广泛用于大型网站。3)PHP易学且服务器表现出色,但类型系统不如静态语言严格。4)PHP在内容管理和电商领域仍重要,生态系统不断进化。5)通过OPcache和APC等优化性能,使用OOP和设计模式提升代码质量。

PHP与Python辩论:哪个更好?PHP与Python辩论:哪个更好?Apr 16, 2025 am 12:03 AM

PHP和Python各有优劣,选择取决于项目需求。1)PHP适合Web开发,易学,社区资源丰富,但语法不够现代,性能和安全性需注意。2)Python适用于数据科学和机器学习,语法简洁,易学,但执行速度和内存管理有瓶颈。

PHP的目的:构建动态网站PHP的目的:构建动态网站Apr 15, 2025 am 12:18 AM

PHP用于构建动态网站,其核心功能包括:1.生成动态内容,通过与数据库对接实时生成网页;2.处理用户交互和表单提交,验证输入并响应操作;3.管理会话和用户认证,提供个性化体验;4.优化性能和遵循最佳实践,提升网站效率和安全性。

PHP:处理数据库和服务器端逻辑PHP:处理数据库和服务器端逻辑Apr 15, 2025 am 12:15 AM

PHP在数据库操作和服务器端逻辑处理中使用MySQLi和PDO扩展进行数据库交互,并通过会话管理等功能处理服务器端逻辑。1)使用MySQLi或PDO连接数据库,执行SQL查询。2)通过会话管理等功能处理HTTP请求和用户状态。3)使用事务确保数据库操作的原子性。4)防止SQL注入,使用异常处理和关闭连接来调试。5)通过索引和缓存优化性能,编写可读性高的代码并进行错误处理。

您如何防止PHP中的SQL注入? (准备的陈述,PDO)您如何防止PHP中的SQL注入? (准备的陈述,PDO)Apr 15, 2025 am 12:15 AM

在PHP中使用预处理语句和PDO可以有效防范SQL注入攻击。1)使用PDO连接数据库并设置错误模式。2)通过prepare方法创建预处理语句,使用占位符和execute方法传递数据。3)处理查询结果并确保代码的安全性和性能。

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
4 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
4 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
4 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.聊天命令以及如何使用它们
4 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

VSCode Windows 64位 下载

VSCode Windows 64位 下载

微软推出的免费、功能强大的一款IDE编辑器

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

螳螂BT

螳螂BT

Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。