创建画布及绘制图形文字

<?php header('content-type:image/png'); //创建画布 $img = imagecreatetruecolor(200,100); 1 //创建颜色 $color =imagecolorallocate($img,255,0,0); 1 //填充区域 imagefill($img,0,0,$color); $color = imagecolorallocate ($img,0,0,0); //随机画10个点 for($i=0; $i<10;$i++){ $x =rand(0,200); $y =rand(0,100); imagesetpixel($img, $x, $y, $color); } //随机画出10条线 $color =imagecolorallocate($img, 0, 0, 255); for($i=0;$i<10;$i++){ $x1=rand(0,200); $y1=rand(0,100); $x2=rand(0,200); $y2=rand(0,100); imageline($img, $x1, $y1,$x2,$y2,$color); } // imageline()用color颜色在图像image中从坐标x1,y1,到x2,y2(图像左上角为0,0)画一条线段 //画一个矩形 $color =imagecolorallocate($img, 0, 255, 0); // imagerectangle($img, 50, 50,100,100, $color); imagefilledrectangle($img, 50, 50, 100, 100, $color); 1 2 3 //输出文字 $text ="hello"; $color =imagecolorallocate($img, 255, 0,255); $font = "simsunb.ttf";
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值