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 "<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('http://img.php.cn/upload/course/000/
        000/002/5833ebba648cf229.png');
    $src = imagecreatefrompng('http://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
    
?>














评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值