首页
诗词
字典
板报
句子
名言
友答
励志
学校
网站地图
图形图像
Photoshop
CorelDRAW
IIIustrator
InDesign
图形图像
Freehand
当前位置:
首页
>
教程频道
>
平面设计
>
图形图像
>
Silverlight 指路蜂二维图形库示例:多义线和多边形
2012-06-20
Silverlight 引路蜂二维图形库示例:多义线和多边形Graphics2D提供了FillPolygon ,drawPolyline来填充和绘
Silverlight 引路蜂二维图形库示例:多义线和多边形
Graphics2D提供了FillPolygon ,drawPolyline来填充和绘制多边形和多义线
private void Polys(){ AffineTransform mat1; /** Colors */ Color redColor = new Color(0x96ff0000, true); Color greenColor = new Color(0xff00ff00, false); Color blueColor = new Color(0x750000ff, true); Polyline polyline; Polygon polygon; Polygon polygon1; string pointsdata1 = "59,45,95,63,108,105,82,139,39,140,11,107,19,65"; mat1 = new AffineTransform(); mat1.Translate(130, 140); mat1.Rotate(-30 * Math.PI / 180.0); polyline = new Polyline(); polygon = new Polygon(); polygon1 = new Polygon(); Point[] points = Point.FromString(pointsdata1); for (int i = 0; i < points.Length; i++) { polyline.AddPoint(points[i].X, points[i].Y); polygon.AddPoint(points[i].X, points[i].Y); polygon1.AddPoint(points[i].X, points[i].Y); } //Clear the canvas with white color. graphics2D.Reset(); graphics2D.Clear(Color.White); graphics2D.AffineTransform = new AffineTransform(); SolidBrush brush = new SolidBrush(greenColor); graphics2D.FillPolygon(brush, polygon); graphics2D.AffineTransform = mat1; brush = new SolidBrush(blueColor); Pen pen = new Pen(redColor, 5); graphics2D.SetPenAndBrush(pen, brush); graphics2D.FillPolygon(null, polygon1); graphics2D.DrawPolyline(null, polyline);}
查看更多
下一篇
本文网址:
https://www.reader8.net/jiaocheng/20120620/2094118.html
读书人精选
热点排行
请教图片jpg编码用什么开源库?
【考题汇总】图像处理职位面试题汇总(2)
新手!安装Qt5.2.0如何没有Qt Gui Appli
LIRe 源代码分析 六:检索(ImageSearch
OpenCV_基于局部自适应阈值的图像2值化
[OpenCV]实验1.1:图像加载、展示
android自定义1圆角ImageView
作图图形
用Fireworks制作水印效果的方法
opengl固定管线与着色器是不是可以同时用