• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

swift下的简单的绘图实现

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
import UIKit

class MyView: UIView {

    /*
    // Only override drawRect: if you perform custom drawing.
    // An empty implementation adversely affects performance during animation.
    override func drawRect(rect: CGRect) {
        // Drawing code
    }
    */
    
    var uiImage:CGImageRef? = UIImage(named: "004.jpg")?.CGImage

    //----简易画板-----
    var path = CGPathCreateMutable()
    
    override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
        var p = touches.anyObject()?.locationInView(self)
        CGPathMoveToPoint(path, nil, p!.x, p!.y)
        
    }
    
    override func touchesMoved(touches: NSSet, withEvent event: UIEvent) {
        var p = touches.anyObject()?.locationInView(self)
        CGPathAddLineToPoint(path, nil, p!.x, p!.y)
        
        //执行重绘的操作
        setNeedsDisplay()
    }
    

    override func drawRect(rect: CGRect) {
        var context = UIGraphicsGetCurrentContext()
        
//        CGContextSetRGBStrokeColor(context, 1, 0, 1, 1)//设置线的颜色
//        CGContextSetLineWidth(context, 5)//设置线的宽度
//        CGContextStrokePath(context)
//        
//        /*----fillpath为填充StrokePath为画线----*/
//        
//        //画线
//        CGContextMoveToPoint(context, 100, 100)
//        CGContextAddLineToPoint(context, 100, 200)
//        CGContextAddLineToPoint(context, 200, 200)
//        CGContextStrokePath(context)
//        
//        CGContextMoveToPoint(context, 100, 300)
//        CGContextAddLineToPoint(context, 100, 400)
//        CGContextAddLineToPoint(context, 200, 500)
//        CGContextStrokePath(context)
//        
//        //画方块
//        CGContextAddRect(context, CGRect(x: 200, y: 100, width: 100, height: 100))
//        CGContextSetRGBFillColor(context, 1, 0, 0, 1)//改变方块的颜色
//        /*--先把方块添加进去然后加边框,否则只显示边框--*/
//        CGContextFillPath(context)
//        CGContextStrokeRect(context, CGRect(x: 200, y: 100, width: 100, height:100))
//        
//        //画圆---弧线
//        CGContextAddArc(context, 220, 350, 100, 0, 3.14*2, 0)
//        CGContextSetRGBFillColor(context, 1, 0, 0, 1)
//        CGContextFillPath(context)
//        
//        CGContextAddArc(context, 220, 350, 100, 0, 3.14*2, 0)//最后的0为顺时针,1为逆时针
//        CGContextStrokePath(context)
//        //---椭圆---宽高相等为圆形,宽高不等为椭圆
//        CGContextAddEllipseInRect(context, CGRect(x: 50, y: 450, width: 200, height: 200))
//        CGContextStrokePath(context)
//        
//        //------画图片
//        //保存context------如果不保存与恢复图形会影响到后续的画图
//        CGContextSaveGState(context)
//        //画布的调整
//        CGContextTranslateCTM(context, 10, 400)
//        CGContextScaleCTM(context, 1, -1)
//        CGContextDrawImage(context, CGRect(x: 100, y: 100, width: 200, height: 200), uiImage)
//        //恢复context
//        CGContextRestoreGState(context)
        
        
        //------简易画板
        //画板上的简单画线
//        var path = CGPathCreateMutable()
//        CGPathMoveToPoint(path, nil, 100, 100)
//        CGPathAddLineToPoint(path, nil, 200, 200)
        CGContextAddPath(context, path)
        CGContextStrokePath(context)
    }

}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Swift游戏开发之俄罗斯方块:No.2 准备工作发布时间:2022-07-13
下一篇:
[Swift]LeetCode722. 删除注释 | Remove Comments发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap