//如果希望绘制在屏幕上,应该drawRect出发
let str: NSString = "abc"
str.drawAtPoint(CGPoint(x: 0, y: 0), withAttributes: [
//字体颜色
NSForegroundColorAttributeName:UIColor.redColor(),
//背景颜色
NSBackgroundColorAttributeName:UIColor.whiteColor()
])
let image = UIImage(named: "showqrcode.jpeg")
image?.drawInRect(CGRect(x: 20, y: 20, width: 150, height: 150))
//1. 获取当前的绘图环境(绘制到屏幕)
//line/rectangle/arc/ellipse/
//text/image
let cxt = UIGraphicsGetCurrentContext() //CGContextRef
//边框(Stroke),填充(Fill)
//绘图者模式
//设置起点
CGContextMoveToPoint(cxt, 0, 0)
//设置终点
CGContextAddLineToPoint(cxt, 100, 100)
CGContextAddLineToPoint(cxt, 0, 200)
CGContextMoveToPoint(cxt, 150, 150)
CGContextAddLineToPoint(cxt, 200, 200)
CGContextSetLineWidth(cxt, 20)
CGContextSetLineJoin(cxt, .Round)
//1. 颜色设置,改变了绘图环境,cxt
// UIColor.purpleColor().setStroke()
//Red/Green/Blue/Alpha
// CGContextSetStrokeColor(cxt, [1, 0, 0, 1])
CGContextSetStrokeColorWithColor(cxt, UIColor.blueColor().CGColor)
//真正绘制,当前点失效,笔离开
CGContextStrokePath(cxt)
CGContextMoveToPoint(cxt, 150, 0)
CGContextAddLineToPoint(cxt, 150, 150)
CGContextSetLineWidth(cxt, 1)
// CGContextSetLineWidth(cxt, 10)
// CGContextSetLineCap(cxt, .Round)
//虚线:偏移 重复模式 重复数组中元素的个数
CGContextSetLineDash(cxt, 2, [4, 4], 2)
//1.
UIColor.redColor().setStroke()
CGContextStrokePath(cxt)
画图i
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 2014年09月23日 9695 愿你纵深一跃,不惧深渊。愿风暴降临,你岸堤永固。愿人群声嘶力竭,呼喊你名。愿众人...
- 你会进行批判性思维吗? 美国学者M·尼尔·布朗(M.NeilBrowne)、斯图尔特·M·基利(Stuart M....