在学习php过程中会遇到图像处理的情况,本篇将会介绍图像处理的方法。
dd8c779ad4f1184f2a8e24384ad57ed8
<?php // 图片处理gd2配置文件修改 ?> <!-- 用图片处理函数画一张图 --> <?php // $img = imagecreatetruecolor(500, 500); // $red = imagecolorallocate($img, 255, 0, 0); // $green = imagecolorallocate($img, 0, 255, 0); // $blue = imagecolorallocate($img, 0, 0, 255); // $pur = imagecolorallocate($img, 255, 0, 255); // $yellow = imagecolorallocate($img, 121, 72, 0); // imagefilledrectangle($img, 0, 0, 500, 500, $green); // imageline($img, 0, 0, 500, 500, $red); // imageline($img, 500, 0, 0, 500, $blue); // imagefilledellipse($img, 250, 250, 200, 200, $yellow); // imagefilledellipse($img, 200, 200, 300, 300, $blue); // imagejpeg($img, 'haha.jpg'); // echo "<img src='haha.jpg'>"; // imagedestroy($img); ?> <!-- 开发验证码(生成验证码) --> <?php check_code(); function check_code($width = 100, $height = 50, $num = 4, $type = 'jpeg'){ $img = imagecreate($width, $height); $string = ''; for ($i = 0;$i < $num; $i++){ $rand = mt_rand(0, 2); switch ($rand) { case 0: $ascii = mt_rand(48, 57); break; case 1: $ascii = mt_rand(65, 90); break; case 2: $ascii = mt_rand(97, 122); break; } $string .= sprintf('%c', $ascii); } imagefilledrectangle($img, 0, 0, $width, $height, randBg($img)); for ($i = 0;$i < 50; $i++){ imagesetpixel($img, mt_rand(0, $width), mt_rand(0, $height), randPix($img)); } for ($i = 0;$i < $num;$i++){ $x = floor($width/$num) * $i + 2; $y = mt_rand(0, $height - 15); imagechar($img, 5, $x, $y, $string[$i], randPix($img)); } $func = 'image' . $type; $header = 'Content-type:image/'.$type; if (function_exists($func)) { header($header); $func($img); }else { echo '图片类型不支持'; } imagedestroy($img); return $string; } function randBg($img){ return imagecolorallocate($img, mt_rand(130, 255), mt_rand(130, 255), mt_rand(130, 255)); } function randPix($img){ return imagecolorallocate($img, mt_rand(0, 120), mt_rand(0, 120), mt_rand(0, 120)); } ?> <!-- 图像缩放和剪裁技术 --> <?php $image = imagecreatefrompng('fbb.png'); $percent = 0.1; list($width, $height) = getimagesize('fbb.png'); $new_width = $width * $percent; $new_height = $height * $percent; $new_image = imagecreatetruecolor($new_width, $new_height); imagecopyresampled($new_image, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); header('content-type:image/jpeg'); imagejpeg($new_image); ?> <!-- 图片水印处理 --> <?php $dst = imagecreatefrompng('https://img.php.cn/upload/course/000/ 000/002/5833ebba648cf229.png'); $src = imagecreatefrompng('https://img.php.cn/ upload/course/000/000/002/5833ebe90cc11285.png'); $dst_info = getimagesize('5833ebba648cf229.png'); $src_info = getimagesize('5833ebe90cc11285.png'); $dst_x = $dst_info[0] - $src_info[0]; $dst_y = $dst_info[1] - $src_info[1]; imagecopymerge($dst, $src, $dst_x, $dst_y, 0, 0, $src_info[0], $src_info[1], 100); header('Content-type:image/png'); imagepng($dst); imagedestroy($dst); imagedestroy($src); ?> <!-- 做一个智能的图片水印函数 --> <?php ?>
本文讲解了图像处理的相关方法,更多相关内容请关注php中文网。
相关推荐:
以上是php基础学习:图像处理的详细内容。更多信息请关注PHP中文网其他相关文章!

tostartaphpsession,usesesses_start()attheScript'Sbeginning.1)placeitbeforeanyOutputtosetThesessionCookie.2)useSessionsforuserDatalikeloginstatusorshoppingcarts.3)regenerateSessiveIdStopreventFentfixationAttacks.s.4)考虑使用AttActAcks.s.s.4)

会话再生是指在用户进行敏感操作时生成新会话ID并使旧ID失效,以防会话固定攻击。实现步骤包括:1.检测敏感操作,2.生成新会话ID,3.销毁旧会话ID,4.更新用户端会话信息。

PHP会话对应用性能有显着影响。优化方法包括:1.使用数据库存储会话数据,提升响应速度;2.减少会话数据使用,只存储必要信息;3.采用非阻塞会话处理器,提高并发能力;4.调整会话过期时间,平衡用户体验和服务器负担;5.使用持久会话,减少数据读写次数。

PHPsessionsareserver-side,whilecookiesareclient-side.1)Sessionsstoredataontheserver,aremoresecure,andhandlelargerdata.2)Cookiesstoredataontheclient,arelesssecure,andlimitedinsize.Usesessionsforsensitivedataandcookiesfornon-sensitive,client-sidedata.

phpientifiesauser'ssessionusessessionSessionCookiesAndSessionIds.1)whiwSession_start()被称为,phpgeneratesainiquesesesessionIdStoredInacookInAcookInamedInAcienamedphpsessidontheuser'sbrowser'sbrowser.2)thisIdAllowSphptptpptpptpptpptortoreTessessionDataAfromtheserverMtheserver。

PHP会话的安全可以通过以下措施实现:1.使用session_regenerate_id()在用户登录或重要操作时重新生成会话ID。2.通过HTTPS协议加密传输会话ID。3.使用session_save_path()指定安全目录存储会话数据,并正确设置权限。

phpsessionFilesArestoredIntheDirectorySpecifiedBysession.save_path,通常是/tmponunix-likesystemsorc:\ windows \ windows \ temponwindows.tocustomizethis:tocustomizEthis:1)useession_save_save_save_path_path()


热AI工具

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

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

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

Atom编辑器mac版下载
最流行的的开源编辑器

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

PhpStorm Mac 版本
最新(2018.2.1 )专业的PHP集成开发工具

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