搜索
首页后端开发php教程php基础学习:图像处理

php基础学习:图像处理

May 22, 2018 pm 01:49 PM
php图像处理基础

在学习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, &#39;haha.jpg&#39;); 
//     echo "<img src=&#39;haha.jpg&#39;>"; 
//     imagedestroy($img); 
?> 
   
<!-- 开发验证码(生成验证码) --> 
<?php 
    check_code(); 
    function check_code($width = 100, $height = 50, 
        $num = 4, $type = &#39;jpeg&#39;){ 
        $img = imagecreate($width, $height); 
        $string = &#39;&#39;; 
        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(&#39;%c&#39;, $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 = &#39;image&#39; . $type; 
        $header = &#39;Content-type:image/&#39;.$type; 
        if (function_exists($func)) { 
            header($header); 
            $func($img); 
        }else { 
           echo &#39;图片类型不支持&#39;;  
        } 
        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(&#39;fbb.png&#39;); 
       
    $percent = 0.1; 
    list($width, $height) = getimagesize(&#39;fbb.png&#39;); 
       
    $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(&#39;content-type:image/jpeg&#39;); 
    imagejpeg($new_image); 
?> 
<!-- 图片水印处理 --> 
<?php 
    $dst = imagecreatefrompng(&#39;https://img.php.cn/upload/course/000/ 
        000/002/5833ebba648cf229.png&#39;); 
    $src = imagecreatefrompng(&#39;https://img.php.cn/ 
        upload/course/000/000/002/5833ebe90cc11285.png&#39;); 
    $dst_info = getimagesize(&#39;5833ebba648cf229.png&#39;); 
    $src_info = getimagesize(&#39;5833ebe90cc11285.png&#39;); 
       
    $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(&#39;Content-type:image/png&#39;); 
    imagepng($dst); 
    imagedestroy($dst); 
    imagedestroy($src); 
?>   
<!-- 做一个智能的图片水印函数 --> 
<?php        
?>

本文讲解了图像处理的相关方法,更多相关内容请关注php中文网。

相关推荐:

通过cURL来做小偷程序

php会话管理和控制

php基础学习:错误处理

以上是php基础学习:图像处理的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
可以在PHP会话中存储哪些数据?可以在PHP会话中存储哪些数据?May 02, 2025 am 12:17 AM

phpsessionscanStorestrings,数字,数组和原始物。

您如何开始PHP会话?您如何开始PHP会话?May 02, 2025 am 12:16 AM

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

什么是会话再生,如何提高安全性?什么是会话再生,如何提高安全性?May 02, 2025 am 12:15 AM

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

使用PHP会话时有哪些性能考虑?使用PHP会话时有哪些性能考虑?May 02, 2025 am 12:11 AM

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

PHP会话与Cookie有何不同?PHP会话与Cookie有何不同?May 02, 2025 am 12:03 AM

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

PHP如何识别用户的会话?PHP如何识别用户的会话?May 01, 2025 am 12:23 AM

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

确保PHP会议的一些最佳实践是什么?确保PHP会议的一些最佳实践是什么?May 01, 2025 am 12:22 AM

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

PHP会话文件默认存储在哪里?PHP会话文件默认存储在哪里?May 01, 2025 am 12:15 AM

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

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脱衣机

Video Face Swap

Video Face Swap

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

热工具

SecLists

SecLists

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

Atom编辑器mac版下载

Atom编辑器mac版下载

最流行的的开源编辑器

EditPlus 中文破解版

EditPlus 中文破解版

体积小,语法高亮,不支持代码提示功能

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )专业的PHP集成开发工具

DVWA

DVWA

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