php基础学习:图像处理

jacklove
发布: 2018-05-22 13:49:25
原创
1685人浏览过

在学习php过程中会遇到图像处理的情况,本篇将会介绍图像处理的方法。

 

<?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 "@@##@@"; 
//     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中文网。

相关推荐:

通过cURL来做小偷程序

立即学习PHP免费学习笔记(深入)”;

php会话管理和控制

php基础学习:错误处理

php基础学习:图像处理

以上就是php基础学习:图像处理的详细内容,更多请关注php中文网其它相关文章!

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号