<?php
// draw 绘图
// 六脉神剑
// 1. 创建画布, 并返回资源
// image create true color() 创建真彩图
$img = imagecreatetruecolor(500,500);
// 2. 颜色分配 allocate 分配,配置
$white = imagecolorallocate($img, 255,255,255);
$red = imagecolorallocate($img, 255,0,0);
$green = imagecolorallocate($img, 0,255,0);
$blue = imagecolorallocate($img, 0,0,255);
$yellow = imagecolorallocate($img, 255, 255, 0);
// 3. 打底色( 填充颜色 )
// imagefill(图像资源, int x, int y, 颜色)
imagefill($img, 10, 20, $yellow);
// 4. 具体画图操作
// 画点
// imagesetpixel( 资源, x,y, color);
// for($i=0; $i<50; $i++){
// imagesetpixel($img, $i,$i, $red);
// }
// 画线
// imageline(资源, x1,y1, x2,y2, color)
//
// 画矩形
// imagefilledrectangle(资源, x1,y1, x2,y2, color)
//
// 画多边形
// imagefilledpolygon(资源, array, num_points, color)
// 例: array(10,20, 30,50, 60,90 ) 三点
// num_points: 点的个数
//
// 画椭圆
// imagefilledellipse(资源, x,y, width, height, color)
// 提示: x,y => 圆心坐标
// width: 椭圆的宽度.
// height:椭圆的高度.
//
// 画弧线
// imagearc(资源, x,y, width,height, start,end, color)
// 提示:
// x,y => 弧线的圆心坐标
// start => 弧线起点
// end => 弧线终点
// start,end : 以角度指定start,end 0: 三点钟方向. 顺时针方向
// width,height => 弧线宽高
//
// 画扇形
// imagefilledarc(资源, x,y, w,h, s,e, color, style);
// 提示: style:
// 1. IMG_ARC_PIE 产生圆形边界
// 2. IMG_ARC_CHORD 用直线连接了起始点
// 3. IMG_ARC_NOFILL 弧或弦 只有轮廓, 不填充
// 4. IMG_ARC_EDGED 用直线将起始点与中心点相连
// 例: imagefilledarc($img, 400,150, 150,200, 0,100, $white, IMG_ARC_PIE)
//
//
// 水平画一个字符
// imagechar(资源, font-size, x,y, 字符, color)
// 提示: font-size: 字体大小 范围 1~5
//
// 垂直画一个字符
// imagecharup(同上)
//
// 水平画字符串
// imagestring(同上)
//
// 垂直画字符串
// imagestringup(同上)
//
// 写汉字
// imagettftext(资源, 大小, 角度, x,y, color, 字体文件, 汉字)
// 例: imagettftext($img, 15, 0, 20,20, $white, './font.ttf', '呵呵');
// 提示: 大小默认单位px
// 角度: 0~360
// 字体文件: 需自己加载 字体格式文件(ttf,svg, eog等)
//
// 5. 保存或者输出图片
header('content-type:image/jpeg; charset=utf-8');
imagejpeg($img);
// 6. 关闭图像资源 销毁资源 destroy 销毁
imagedestroy($img);
?>
GD库绘图六脉神剑,及画图具体操作
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 精 时间少?读精华这一段就够了! 具体方法,如同《天龙八部》中段誉的六脉神剑,时灵时不灵。 而系统呢,恰似《神雕侠...
- (一) 世人去“玩易窝”和“阳明洞”无数,留下的文字,亦是无数。然被约文三篇,做贵州之行纪念,心中稍有坦然。 第一...