yangzailu

导航

创建画布(验证码)

<?php
//创建画布
    $width = 500;
    $height = 800;
    $image=imagecreatetruecolor($width,$height);
    //var_dump($image);
//处理画布
//imagecolorallocate() 分配颜色到画布上,选择一个颜色。

//分配颜色
    $green=imagecolorallocate($image,0,255,0);

//填充(油漆桶):imagefill(画布,填充点X坐标,填充点Y坐标,颜色);
    imagefill($image,0,0,$green);
//输出:
    imagepng($image,'./green.png');

//直接输出到浏览器
    imagepng($image);
//告知浏览器,输出的内容为png格式的图片
    header("content-type:image/png");
//关闭画布
    imagedestroy($image);

?>

 

posted on 2017-01-04 15:02  飞离地平线  阅读(308)  评论(0编辑  收藏  举报