CoreGraphics--画线/圆/矩形

- (void)drawRect:(CGRect)rect {

// Drawing code

NSLog(@"drawRect自动调用");

//画图步骤

//获取上下文(/画笔/绘图环境)

CGContextRef context = UIGraphicsGetCurrentContext();

//设置画笔颜色

CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);

//线条的宽度

CGContextSetLineWidth(context, 4);

//开始画

//1.画一条直线

//    [self drawOneLineWith:context];

//2-1.画多条线

//    [self drawManyLines:context];

//2-2

//    [self drawManyLines2:context];

//3画虚线

//    [self drawDashLine:context];

//4 画矩形

//    [self drawRectShape:context];

//5.填充的矩形

//    [self drawFillRect:context];

//6 画椭圆

//    [self drawCircle:context];

//7.填充的椭圆

//    [self drawFillCircle:context];

//8 显示文字

//    [self drawText];

//9.显示图片

[self drawImage];

}

#pragma makr -- 9 显示图片

- (void)drawImage{

[[UIImage imageNamed:@"收藏-128"] drawInRect:CGRectMake(0, 0, 100, 100)];

}

#pragma mark -- 8 显示文字

- (void)drawText{

//起点(attribute 中设这参数)

[@"aaabbbcccddd" drawAtPoint:CGPointMake(100, 100) withAttributes:NULL];

//

[@"asdfasdfaf" drawInRect:CGRectMake(100, 150, 200, 200) withAttributes:NULL];

}

#pragma mark -- 7 画填充的 椭圆

- (void)drawFillCircle:(CGContextRef)context{

//填充的颜色

[[UIColor redColor] setFill];

CGContextFillEllipseInRect(context, CGRectMake(40, 40, 200, 300));

}

#pragma mark -- 6 画椭圆

- (void)drawCircle:(CGContextRef)context{

CGContextStrokeEllipseInRect(context, CGRectMake(40, 40, 300, 200));

}

#pragma mark -- 5填充的矩形

- (void)drawFillRect:(CGContextRef)context{

//设置填充颜色

[[UIColor yellowColor] setFill];

CGContextFillRect(context, CGRectMake(40, 40, 250, 300));

}

#pragma mark --4画矩形

- (void)drawRectShape:(CGContextRef)context{

CGContextStrokeRect(context, CGRectMake(40, 40, 200, 300));

//同理(stroke 画图方法; 也有add..方法 )

//    CGContextAddRect(context,  CGRectMake(40, 40, 200, 300));

//    CGContextStrokePath(context);

}

#pragma mark -- 3 画虚线

- (void)drawDashLine:(CGContextRef)context{

//设置虚线类型

//    CGFloat lengths[] = {5,15,5}; //长5 空隙15 长5 ...

CGFloat lengths[] = {5,5};

CGContextSetLineDash(context, 0, lengths, sizeof(lengths)/sizeof(lengths[0]));

//    CGContextSetLineDash(<#CGContextRef c#>, <#CGFloat phase#>, <#const CGFloat *lengths#>, <#size_t count#>)

//phase 开始点 跳过多少个点数(0代表从头画)

//lengths 虚线的样式

//count 长度

//起点

CGContextMoveToPoint(context, 50, 50);

//画线

CGContextAddLineToPoint(context, 200, 200);

CGContextStrokePath(context);

//第二段设置成  直线 NULL

CGContextSetLineDash(context, 0, NULL, 0);

//需要重新设置起点

CGContextMoveToPoint(context, 200, 200);

CGContextAddLineToPoint(context, 250,400);

CGContextStrokePath(context);

}

#pragma mark --画多条线 (方式二)

- (void)drawManyLines2:(CGContextRef)context{

CGPoint point[] = {CGPointMake(50, 50),CGPointMake(100, 100),CGPointMake(100, 200)};

//计算数组中元素个数

//    int count  = sizeof(数组名)/size(sizeof(a[0]));

//个数

CGContextAddLines(context, point, sizeof(point)/sizeof(point[0]));

//闭合

CGContextClosePath(context);

//开始画

CGContextStrokePath(context);

}

#pragma mark --画多条线 (方式一)

- (void)drawManyLines:(CGContextRef)context{

//例如:三角形

CGContextMoveToPoint(context, 200, 100);

CGContextAddLineToPoint(context, 100, 200);

CGContextAddLineToPoint(context, 300, 200);

//回到起点

//    CGContextAddLineToPoint(context, 200, 100);

//按方法2 : 闭合(起点和终点连线)

CGContextClosePath(context);

CGContextStrokePath(context);

}

#pragma mark -- 1 画一条线

- (void)drawOneLineWith:(CGContextRef)context{

//起点

CGContextMoveToPoint(context, 50, 50);

//终点:画线

CGContextAddLineToPoint(context, 200, 200);

//开始画

CGContextStrokePath(context);

}

时间: 2024-10-08 16:18:18

CoreGraphics--画线/圆/矩形的相关文章

PHP合成图片、生成文字、居中对齐、画线、矩形、三角形、多边形、图片抗锯齿、不失真 高性能源码示例

function generateImg($source, $text1, $text2, $text3, $font = './msyhbd.ttf') { $date = '' . date ( 'Ymd' ) . '/'; $img = $date . md5 ( $source . $text1 . $text2 . $text3 ) . '.jpg'; if (file_exists ( './' . $img )) { return $img; } $main = imagecrea

Opencv图像识别从零到精通(13)----点线圆矩形与鼠标事件

图像中不可少的元素就是点.线.圆.椭圆.矩形,多边形,同时这些也是物体的特征组成单位,在图像识别中必不可少.所以要首先去认识这个元素怎么定义和使用,同时鼠标是电脑的窗口,我们很多的处理都会用到鼠标.本文主要有下面三个部分: (1) 点.线.圆.椭圆.矩形的基础应用 (2)点.线.圆.椭圆.矩形的进阶应用 (3)鼠标事件 一.点.线.圆.椭圆.矩形的基础应用 绘制点的函数: Point a = Point (600,600); 文字函数putText()函数 void putText( CvArr

iOS Quartz2D绘制线、矩形、弧、圆、文字、图片

利用Quartz2D中提供的图层上下文 Layer Graphics Context,进行简单绘制线.矩形.弧.圆.文字.图片 在storyBoard中得拖入控制器,添加多个UIView控件,并把各个UIView的class修改为自定义的类. 如: 绘制线: // // HJLineView.m // 画线三角矩形圆 // // Created by HJiang on 15/1/2. // Copyright (c) 2015年 HJiang. All rights reserved. //

Quartz2d (画线 矩形 圆 三角形 弧线 扇形 进度圈等)

</pre><pre code_snippet_id="1675698" snippet_file_name="blog_20160509_1_1489477" name="code" class="objc">/** Quartz2d的图形绘制API */ "[画线drawLine]" 1.获取上下文件UIGraphicsGetCurrentContext(); 2.设置起点CGC

IOS Quartz 各种绘制图形用法---实现画图片、写文字、画线、椭圆、矩形、棱形等

转自:http://blog.csdn.net/zhibudefeng/article/details/8463268 [cpp] view plain copy // Only override drawRect: if you perform custom drawing. // An empty implementation adversely affects performance during animation. - (void)drawRect:(CGRect)rect { CGC

Quartz 各种绘制图形用法---实现画图片、写文字、画线、椭圆、矩形、棱形等

// Only override drawRect: if you perform custom drawing.// An empty implementation adversely affects performance during animation.- (void)drawRect:(CGRect)rect{    CGContextRef context = UIGraphicsGetCurrentContext();         /*NO.1画一条线     CGContex

【转】IOS Quartz 各种绘制图形用法-实现画图片、写文字、画线、椭圆、矩形、棱形等

// Only override drawRect: if you perform custom drawing.// An empty implementation adversely affects performance during animation.- (void)drawRect:(CGRect)rect{ CGContextRef context = UIGraphicsGetCurrentContext(); /*NO.1画一条线 CGContextSetRGBStrokeCo

OpenCV各种绘制调用:线,矩形,圆,椭圆,文字

OpenCV提供了各种绘制接口,可以往图片里画各种东西,这种功能可以为以后在图像上标记一些信息方便调试 // drawcall.cpp: 定义控制台应用程序的入口点. // #include "stdafx.h" #include "opencv2/opencv.hpp" int main() { cv::Mat img(cv::Size(400, 300),CV_8UC3); // 画线 起点,终点,颜色,线宽 cv::line(img, cv::Point(20

计算机图形学中的中点画线,中点画圆,Bresenham画线与画圆算法

#include<iostream>#include<graphics.h>  // 这样引用 EasyX 图形库#include<conio.h>#include<time.h>#include<math.h>#include<stdlib.h>using namespace std; //Bresenham画线void Bresenham_line(int x0,int y0,int x1,int y1){ int x,y,dx,