iOS - Quartz 2D 画板绘制
1、绘制画板
1.1 绘制简单画板
PaintBoardView.h
@interface PaintBoardView : UIView @end
PaintBoardView.m
@interface PaintBoardView () /// 路径
@property (nonatomic, strong) UIBezierPath *path; /// 保存所有路径的数组
@property (nonatomic, strong) NSMutableArray *pathsArrayM; @end @implementation PaintBoardView /// 初始化
- (instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) {
self.backgroundColor = [UIColor whiteColor];
}
return self;
} /// 触摸开始
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event { // 获取触摸起始点位置
CGPoint startPoint = [touches.anyObject locationInView:self]; // 添加路径描绘起始点
[self.path moveToPoint:startPoint]; // 添加一条触摸路径描绘
[self.pathsArrayM addObject:self.path];
} /// 触摸移动
- (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event { // 获取触摸点位置
CGPoint touchPoint = [touches.anyObject locationInView:self]; // 添加路径描绘
[self.path addLineToPoint:touchPoint]; // 刷新视图
[self setNeedsDisplay];
} /// 触摸结束
- (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event { // 获取绘制结果
UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0);
CGContextRef ctx = UIGraphicsGetCurrentContext();
[self.layer renderInContext:ctx];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext(); NSData *data = UIImagePNGRepresentation(image);
[data writeToFile:@"/Users/JHQ0228/Desktop/Images/pic.png" atomically:YES];
} /// 触摸取消
- (void)touchesCancelled:(NSSet *)touches withEvent:(nullable UIEvent *)event {
[self touchesEnded:touches withEvent:event];
} /// 绘制图形
- (void)drawRect:(CGRect)rect { for (UIBezierPath *path in self.pathsArrayM) { // 绘制路径
[path stroke];
}
} /// 懒加载 - (UIBezierPath *)path { if (_path == nil) {
_path = [UIBezierPath bezierPath];
}
return _path;
} - (NSMutableArray *)pathsArrayM { if (_pathsArrayM == nil) {
_pathsArrayM = [NSMutableArray array];
}
return _pathsArrayM;
} @end
ViewController.m
// 创建画板
CGRect frame = CGRectMake(20, 50, self.view.bounds.size.width - 40, 200);
PaintBoardView *paintBoard = [[PaintBoardView alloc] initWithFrame:frame]; [self.view addSubview:paintBoard];
效果
1.2 绘制画板封装
具体实现代码见 GitHub 源码 QExtension
QPaintBoardPath.h
@interface QPaintBoardPath : UIBezierPath /// 线的颜色
@property (nonatomic, strong) UIColor *pathColor; /// 线的宽度
@property (nonatomic, assign) CGFloat pathWidth; @end
QPaintBoardPath.m
@implementation QPaintBoardPath @end
QPaintBoardView.h
@interface QPaintBoardView : UIView /// 画线的宽度,default is 1,max is 30
@property (nonatomic, assign) CGFloat paintLineWidth; /// 画笔的颜色,default is blackColor
@property (nonatomic, strong) UIColor *paintLineColor; /// 画板的颜色,default is whiteColor
@property (nonatomic, strong) UIColor *paintBoardColor; /**
* 创建画板视图控件,获取绘画结果
*
* @param frame 画板视图控件 frame
* @param lineWidth 画笔的线宽,default is 1,max is 30
* @param lineColor 画笔的颜色,default is blackColor
* @param boardColor 画板的颜色,default is whiteColor
* @param result 绘画结果
*
* @return 手势锁视图控件
*/
+ (instancetype)q_paintBoardViewWithFrame:(CGRect)frame
lineWidth:(CGFloat)lineWidth
lineColor:(nullable UIColor *)lineColor
boardColor:(nullable UIColor *)boardColor
paintResult:(void (^)(UIImage * _Nullable image))result; /**
* 创建简单画板视图控件
*
* @param frame 画板视图控件 frame
*
* @return 手势锁视图控件
*/
+ (instancetype)q_paintBoardViewWithFrame:(CGRect)frame; /**
* 获取绘画结果
*
* @return 绘画结果图片
*/
- (UIImage * _Nullable)q_getPaintImage; /**
* 清除绘画结果
*/
- (void)q_clear; /**
* 撤销绘画结果
*/
- (void)q_back; @end
QPaintBoardView.m
#import "QPaintBoardPath.h" @interface QPaintBoardView () /// 路径
@property (nonatomic, strong, nullable) QPaintBoardPath *path; /// 保存所有路径的数组
@property (nonatomic, strong) NSMutableArray *pathsArrayM; /// 绘画结果
@property (nonatomic, copy) void (^resultBlock)(UIImage * _Nullable); /// 按钮工具条
@property (nonatomic, strong) UIView *toolView; /// 画笔设置视图
@property (nonatomic, strong) UIView *brushSetingView; /// 颜色选择视图
@property (nonatomic, strong) UIScrollView *colorSelectedView; /// 画板设置视图
@property (nonatomic, strong) UIScrollView *boardSetingView; /// 记录线的颜色
@property (nonatomic, strong) UIColor *lastPaintLineColor; /// 记录线的宽度
@property (nonatomic, assign) CGFloat lastPaintLineWidth; @end @implementation QPaintBoardView #pragma mark - 创建画板 /// 创建画板视图控件,获取绘画结果
+ (instancetype)q_paintBoardViewWithFrame:(CGRect)frame
lineWidth:(CGFloat)lineWidth
lineColor:(nullable UIColor *)lineColor
boardColor:(nullable UIColor *)boardColor
paintResult:(void (^)(UIImage * _Nullable image))result { QPaintBoardView *paintBoardView = [[self alloc] init]; // CGRect tmpFrame = frame;
// tmpFrame.size.height = frame.size.height + 44; paintBoardView.frame = frame;
paintBoardView.paintLineWidth = (lineWidth > 30 ? 30 : lineWidth) ? : 1;
paintBoardView.paintLineColor = lineColor ? : [UIColor blackColor];
paintBoardView.paintBoardColor = boardColor ? : [UIColor whiteColor];
paintBoardView.resultBlock = result; return paintBoardView;
} /// 创建简单画板视图控件
+ (instancetype)q_paintBoardViewWithFrame:(CGRect)frame { QPaintBoardView *paintBoardView = [[self alloc] initWithFrame:frame]; paintBoardView.paintLineWidth = 1;
paintBoardView.paintLineColor = [UIColor blackColor];
paintBoardView.paintBoardColor = [UIColor whiteColor]; return paintBoardView;
} #pragma mark - 自定义画板 /// 初始化,自定义画板界面
- (instancetype)init { if (self = [super init]) { self.clipsToBounds = YES; // 添加工具按钮视图 self.toolView = [[UIView alloc] init];
self.toolView.backgroundColor = [UIColor blackColor];
[self addSubview:self.toolView]; NSArray *imageNames = @[@"btn_brush", @"btn_board", @"btn_eraser", @"btn_back", @"btn_clear", @"btn_save"];
NSArray *selectedImageNames = @[@"btn_brush_pressed", @"btn_board_pressed", @"btn_eraser_pressed"]; for (NSUInteger i = 0; i < 6; i++) { UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.tag = i;
[button setBackgroundImage:[self q_getBundleImageWithName:imageNames[i]] forState:UIControlStateNormal];
[button addTarget:self action:@selector(toolButtonClick:) forControlEvents:UIControlEventTouchUpInside];
[self.toolView addSubview:button]; if (i < 3) {
[button setBackgroundImage:[self q_getBundleImageWithName:selectedImageNames[i]] forState:UIControlStateSelected];
}
} // 添加画笔设置视图 self.brushSetingView = [[UIView alloc] init];
self.brushSetingView.backgroundColor = [UIColor grayColor];
[self addSubview:self.brushSetingView];
[self sendSubviewToBack:self.brushSetingView]; UIView *widthBackView = [[UIView alloc] init];
widthBackView.layer.borderWidth = 1;
widthBackView.layer.borderColor = [UIColor lightGrayColor].CGColor;
UIView *widthView = [[UIView alloc] init];
[widthBackView addSubview:widthView];
[self.brushSetingView addSubview:widthBackView]; UISlider *widthSlider = [[UISlider alloc] init];
widthSlider.thumbTintColor = [UIColor orangeColor];
[widthSlider addTarget:self action:@selector(widthSliderClick:) forControlEvents:UIControlEventValueChanged];
[self.brushSetingView addSubview:widthSlider]; UIButton *colorSelectedBtn = [[UIButton alloc] init];
colorSelectedBtn.layer.borderWidth = 1;
colorSelectedBtn.layer.borderColor = [UIColor lightGrayColor].CGColor;
[colorSelectedBtn addTarget:self action:@selector(colorSelectedBtnClick:) forControlEvents:UIControlEventTouchUpInside];
[self.brushSetingView addSubview:colorSelectedBtn]; // 添加画笔颜色选择视图 self.colorSelectedView = [[UIScrollView alloc] init];
self.colorSelectedView.backgroundColor = [[UIColor grayColor] colorWithAlphaComponent:0.3];
self.colorSelectedView.showsHorizontalScrollIndicator = NO;
[self addSubview:self.colorSelectedView];
[self sendSubviewToBack:self.colorSelectedView]; NSArray *colorArray = @[[UIColor blackColor], [UIColor whiteColor], [UIColor redColor],
[UIColor greenColor], [UIColor blueColor], [UIColor cyanColor],
[UIColor magentaColor], [UIColor orangeColor], [UIColor yellowColor],
[UIColor darkGrayColor], [UIColor lightGrayColor], [UIColor brownColor],
[UIColor grayColor], [UIColor purpleColor]]; for (NSUInteger i = 0; i < 14; i++) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.layer.borderWidth = 1;
button.layer.borderColor = [UIColor lightGrayColor].CGColor;
[button setBackgroundColor:colorArray[i]];
[button addTarget:self action:@selector(colorSelectedClick:) forControlEvents:UIControlEventTouchUpInside];
[self.colorSelectedView addSubview:button];
} // 添加画板设置视图 self.boardSetingView = [[UIScrollView alloc] init];
self.boardSetingView.backgroundColor = [UIColor grayColor];
self.boardSetingView.showsHorizontalScrollIndicator = NO;
[self addSubview:self.boardSetingView];
[self sendSubviewToBack:self.boardSetingView]; for (NSUInteger i = 0; i < 14; i++) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.layer.borderWidth = 1;
button.layer.borderColor = [UIColor lightGrayColor].CGColor;
[button setBackgroundColor:colorArray[i]];
[button addTarget:self action:@selector(boardColorSelectedClick:) forControlEvents:UIControlEventTouchUpInside];
[self.boardSetingView addSubview:button];
}
}
return self;
} /// 布局子控件
- (void)layoutSubviews {
[super layoutSubviews]; if (self.subviews.count) { // 设置工具按钮视图 self.toolView.frame = CGRectMake(0, self.bounds.size.height - 44, self.bounds.size.width, 44); for (NSUInteger i = 0; i < 6; i++) {
CGFloat margin = (self.bounds.size.width - 44 * 6) / 7;
CGFloat x = margin + (margin + 44) * i;
self.toolView.subviews[i].frame = CGRectMake(x, 0, 44, 44);
} // 设置画笔设置视图 self.brushSetingView.frame = CGRectMake(0, self.bounds.size.height - 44, self.bounds.size.width, 60); self.brushSetingView.subviews[0].frame = CGRectMake(15, 15, 30, 30);
self.brushSetingView.subviews[0].layer.cornerRadius = 15;
self.brushSetingView.subviews[0].layer.masksToBounds = YES; CGFloat w = self.paintLineWidth;
self.brushSetingView.subviews[0].subviews[0].frame = CGRectMake(15 - w / 2, 15 - w / 2, w, w);
self.brushSetingView.subviews[0].subviews[0].layer.cornerRadius = w / 2;
self.brushSetingView.subviews[0].subviews[0].layer.masksToBounds = YES;
self.brushSetingView.subviews[0].subviews[0].backgroundColor = self.paintLineColor; self.brushSetingView.subviews[1].frame = CGRectMake(60, 15, self.bounds.size.width - 60 - 80, 32);
UISlider *slider = self.brushSetingView.subviews[1];
slider.value = self.paintLineWidth / 30; self.brushSetingView.subviews[2].frame = CGRectMake(self.bounds.size.width - 60, 15, 50, 30);
self.brushSetingView.subviews[2].backgroundColor = self.paintLineColor; // 设置画笔颜色选择视图 self.colorSelectedView.frame = CGRectMake(0, self.bounds.size.height - 44, self.bounds.size.width, 60);
self.colorSelectedView.contentSize = CGSizeMake(14 * (50 + 20) + 20, 50); for (NSUInteger i = 0; i < 14; i++) {
CGFloat x = 20 + (20 + 50) * i;
self.colorSelectedView.subviews[i].frame = CGRectMake(x, 10, 50, 40);
} // 设置画板设置视图 self.boardSetingView.frame = CGRectMake(0, self.bounds.size.height - 44, self.bounds.size.width, 60);
self.boardSetingView.contentSize = CGSizeMake(14 * (50 + 20) + 20, 50); for (NSUInteger i = 0; i < 14; i++) {
CGFloat x = 20 + (20 + 50) * i;
self.boardSetingView.subviews[i].frame = CGRectMake(x, 10, 50, 40);
}
}
} /// 工具按钮点击事件处理
- (void)toolButtonClick:(UIButton *)btn { switch (btn.tag) { case 0: {
// 画笔设置 [self exitEraseState]; if (btn.isSelected == NO) { [self hideBoardSetingView]; [self showColorSelectedView];
[self showBrushSetingView]; } else { [self hideColorSelectedView];
[self hideBrushSetingView];
}
break;
} case 1: {
// 画板设置 [self exitEraseState]; if (btn.isSelected == NO) { [self hideColorSelectedView];
[self hideBrushSetingView]; [self showBoardSetingView]; } else { [self hideBoardSetingView];
}
break;
} case 2: {
// 擦除 [self hideBoardSetingView]; [self hideColorSelectedView];
[self hideBrushSetingView]; if (btn.selected == NO) { [self enterEraseState]; } else {
[self exitEraseState];
}
break;
} case 3: {
// 撤销 [self hideBoardSetingView]; [self hideColorSelectedView];
[self hideBrushSetingView]; [self q_back]; break;
} case 4: {
// 清除 [self hideBoardSetingView]; [self hideColorSelectedView];
[self hideBrushSetingView]; [self exitEraseState]; [self q_clear]; break;
} case 5: {
// 获取绘制结果 [self hideBoardSetingView]; [self hideColorSelectedView];
[self hideBrushSetingView]; [self exitEraseState]; if (self.resultBlock) {
self.resultBlock([self q_getPaintImage]);
} break;
} default:
break;
}
} /// 画笔线宽设置按钮点击事件处理
- (void)widthSliderClick:(UISlider *)slider { if (slider.value == 0) {
self.paintLineWidth = 1;
} else {
self.paintLineWidth = slider.value * 30;
} CGFloat w = self.paintLineWidth;
self.brushSetingView.subviews[0].subviews[0].frame = CGRectMake(15 - w / 2, 15 - w / 2, w, w);
self.brushSetingView.subviews[0].subviews[0].layer.cornerRadius = w / 2;
} /// 画笔颜色选择按钮点击事件处理
- (void)colorSelectedBtnClick:(UIButton *)btn { if (btn.selected == NO) {
[self showColorSelectedView];
} else {
[self hideColorSelectedView];
}
} /// 画笔颜色选择点击响应事件处理
- (void)colorSelectedClick:(UIButton *)btn { self.paintLineColor = btn.backgroundColor; self.brushSetingView.subviews[0].subviews[0].backgroundColor = btn.backgroundColor;
self.brushSetingView.subviews[2].backgroundColor = btn.backgroundColor;
} /// 画板颜色选择点击响应事件处理
- (void)boardColorSelectedClick:(UIButton *)btn { self.paintBoardColor = btn.backgroundColor;
} /// 显示画笔设置视图
- (void)showBrushSetingView { UIButton *setBrushBtn = self.toolView.subviews[0]; if (setBrushBtn.selected == NO) { setBrushBtn.selected = YES; [UIView animateWithDuration:0.2 animations:^{
CGRect frame = CGRectMake(0, self.bounds.size.height - 44 - 60, self.bounds.size.width, 60);
self.brushSetingView.frame = frame;
}];
}
} /// 隐藏画笔设置视图
- (void)hideBrushSetingView { UIButton *setBrushBtn = self.toolView.subviews[0]; if (setBrushBtn.selected) { setBrushBtn.selected = NO; [UIView animateWithDuration:0.2 animations:^{
CGRect frame = CGRectMake(0, self.bounds.size.height - 44, self.bounds.size.width, 60);
self.brushSetingView.frame = frame;
}];
}
} // 显示画笔颜色选择视图
- (void)showColorSelectedView { UIButton *colorSelectedBtn = self.brushSetingView.subviews[2]; if (colorSelectedBtn.selected == NO) { colorSelectedBtn.selected = YES; [UIView animateWithDuration:0.2 animations:^{
CGRect frame = CGRectMake(0, self.bounds.size.height - 44 - 60 - 60, self.bounds.size.width, 60);
self.colorSelectedView.frame = frame;
}];
}
} /// 隐藏画笔颜色选择视图
- (void)hideColorSelectedView { UIButton *colorSelectedBtn = self.brushSetingView.subviews[2]; if (colorSelectedBtn.selected) { colorSelectedBtn.selected = NO; [UIView animateWithDuration:0.2 animations:^{
CGRect frame = CGRectMake(0, self.bounds.size.height - 44, self.bounds.size.width, 60);
self.colorSelectedView.frame = frame;
}];
}
} /// 显示画板设置视图
- (void)showBoardSetingView { UIButton *setBoardBtn = self.toolView.subviews[1]; if (setBoardBtn.selected == NO) { setBoardBtn.selected = YES; [UIView animateWithDuration:0.2 animations:^{
CGRect frame = CGRectMake(0, self.bounds.size.height - 44 - 60, self.bounds.size.width, 60);
self.boardSetingView.frame = frame;
}];
}
} /// 隐藏画板设置视图
- (void)hideBoardSetingView { UIButton *setBoardBtn = self.toolView.subviews[1]; if (setBoardBtn.selected) { setBoardBtn.selected = NO; [UIView animateWithDuration:0.2 animations:^{
CGRect frame = CGRectMake(0, self.bounds.size.height - 44, self.bounds.size.width, 60);
self.boardSetingView.frame = frame;
}];
}
} /// 进入擦除状态
- (void)enterEraseState { UIButton *setEraseBtn = self.toolView.subviews[2]; if (setEraseBtn.selected == NO) { setEraseBtn.selected = YES; self.lastPaintLineColor = self.paintLineColor;
self.paintLineColor = self.paintBoardColor; self.lastPaintLineWidth = self.paintLineWidth;
self.paintLineWidth = self.paintLineWidth + 5;
}
} /// 退出擦除状态
- (void)exitEraseState { UIButton *setEraseBtn = self.toolView.subviews[2]; if (setEraseBtn.isSelected) { setEraseBtn.selected = NO; self.paintLineColor = self.lastPaintLineColor;
self.paintLineWidth = self.lastPaintLineWidth;
}
} #pragma mark - 绘制图案 /// 触摸开始
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event { if (self.subviews.count) { [self hideColorSelectedView];
[self hideBrushSetingView];
[self hideBoardSetingView];
} // 获取触摸起始点位置
CGPoint startPoint = [touches.anyObject locationInView:self]; // 添加路径描绘起始点
[self.path moveToPoint:startPoint]; // 记录线的属性
self.path.pathColor = self.paintLineColor;
self.path.pathWidth = self.paintLineWidth; // 添加一条触摸路径描绘
[self.pathsArrayM addObject:self.path];
} /// 触摸移动
- (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event { // 获取触摸点位置
CGPoint touchPoint = [touches.anyObject locationInView:self]; // 添加路径描绘
[self.path addLineToPoint:touchPoint]; // 刷新视图
[self setNeedsDisplay];
} /// 触摸结束
- (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event { // 销毁 path
self.path = nil;
} /// 触摸取消
- (void)touchesCancelled:(NSSet *)touches withEvent:(nullable UIEvent *)event {
[self touchesEnded:touches withEvent:event];
} /// 绘制图形,只要调用 drawRect 方法就会把之前的内容全部清空
- (void)drawRect:(CGRect)rect { for (QPaintBoardPath *path in self.pathsArrayM) { // 绘制路径
path.lineWidth = path.pathWidth;
[path.pathColor setStroke]; path.lineCapStyle = kCGLineCapRound;
path.lineJoinStyle = kCGLineJoinRound;
[path stroke];
}
} /// 获取绘画结果
- (UIImage * _Nullable)q_getPaintImage { UIImage *image = nil; CGSize boardSize = self.bounds.size; if (self.subviews.count) {
boardSize.height = self.bounds.size.height - 44;
} if (self.pathsArrayM.count) {
UIGraphicsBeginImageContextWithOptions(boardSize, NO, 0);
CGContextRef ctx = UIGraphicsGetCurrentContext();
[self.layer renderInContext:ctx];
image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
} return image;
} /// 清除绘画结果
- (void)q_clear { if (self.pathsArrayM.count) {
[self.pathsArrayM removeAllObjects]; [self setNeedsDisplay];
}
} /// 撤销绘画结果
- (void)q_back { if (self.pathsArrayM.count) {
[self.pathsArrayM removeLastObject]; [self setNeedsDisplay];
}
} /// 懒加载 - (QPaintBoardPath * _Nullable)path { // path 每次绘制完成后需要销毁,否则无法清除之前绘制的路径 if (_path == nil) {
_path = [QPaintBoardPath bezierPath];
}
return _path;
} - (NSMutableArray *)pathsArrayM { if (_pathsArrayM == nil) {
_pathsArrayM = [NSMutableArray array];
}
return _pathsArrayM;
} /// 设置属性值
- (void)setPaintBoardColor:(UIColor *)paintBoardColor {
_paintBoardColor = paintBoardColor;
self.backgroundColor = paintBoardColor;
} /// 加载 bundle 中的图片
- (UIImage *)q_getBundleImageWithName:(NSString *)name { NSString *bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"QPaintBoardView.bundle"]; UIImage *image = [[UIImage imageWithContentsOfFile:[bundlePath stringByAppendingPathComponent:name]]
imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
return image;
} @end
1、创建简单画板
// 创建简单画板
CGRect frame = CGRectMake(20, 50, self.view.bounds.size.width - 40, 200); QPaintBoardView *paintBoardView = [QPaintBoardView q_paintBoardViewWithFrame:frame]; // 可选属性值设置
paintBoardView.paintLineWidth = 5; // default is 1
paintBoardView.paintLineColor = [UIColor redColor]; // default is blackColor
paintBoardView.paintBoardColor = [UIColor cyanColor]; // default is whiteColor [self.view addSubview:paintBoardView];
self.paintBoardView = paintBoardView; // 撤销绘画结果
[self.paintBoardView q_back]; // 清除绘画结果
[self.paintBoardView q_clear]; // 获取绘画结果
UIImage *image = [self.paintBoardView q_getPaintImage];
效果
2、创建画板
// 创建画板
QPaintBoardView *paintBoard = [QPaintBoardView q_paintBoardViewWithFrame:self.view.bounds
lineWidth:0
lineColor:nil
boardColor:nil
paintResult:^(UIImage * _Nullable image) { if (image) {
NSData *data = UIImagePNGRepresentation(image);
[data writeToFile:@"/Users/JHQ0228/Desktop/Images/pic.png" atomically:YES];
}
}]; [self.view addSubview:paintBoard];
效果
iOS - Quartz 2D 画板绘制的更多相关文章
- iOS - Quartz 2D 二维绘图
1.Quartz 2D 简介 Quartz 2D 属于 Core Graphics(所以大多数相关方法的都是以 CG 开头),是 iOS/Mac OSX 提供的在内核之上的强大的 2D 绘图引擎,并且 ...
- iOS开发——图层OC篇&Quartz 2D各种绘制实例
Quartz 2D各种绘制实例 首先说一下,本篇文章只是介绍怎么使用Quartz 2D绘制一些常用的图像效果,关于Quartz和其他相关技术请查看笔者之前写的完整版(Quartz 2D详解) 一:画线 ...
- iOS - Quartz 2D 贝塞尔曲线
1.贝塞尔曲线 贝塞尔曲线(Bézier curve),又称贝兹曲线或贝济埃曲线,是应用于二维图形应用程序的数学曲线.一般的矢量图形软件通过它来精确画出曲线,贝兹曲线由线段与节点组成,节点是可拖动的支 ...
- iOS - Quartz 2D 第三方框架 Charts 绘制图表
1.Charts 简介 使用第三方框架 Charts 绘制 iOS 图表.GitHub 源码 Charts Charts 是一款用于绘制图表的框架,可以绘制柱状图.折线图.K线图.饼状图等.Chart ...
- iOS - Quartz 2D 手势截屏绘制
1.绘制手势截屏 具体实现代码见 GitHub 源码 QExtension QTouchClipView.h @interface QTouchClipView : UIView /** * 创建手势 ...
- iOS - Quartz 2D 下载进度按钮绘制
1.绘制下载进度按钮 具体实现代码见 GitHub 源码 QExtension QProgressButton.h @interface QProgressButton : UIButton /// ...
- IOS Quartz 2D 学习(1)
IOS提供两种创建图形的途径: 1.OpenGL. 2.Quartz.Core Animation.UIKit图形支持. UIKit的图形系统 1.视图绘画周期: DrawRect方法,在任何时候,当 ...
- iOS 2D绘图详解(Quartz 2D)之阴影和渐变(Shadow,Gradient)
前言:这个系列写道这里已经是第五篇了,本文会介绍下阴影和渐变的基础知识,以及一些基本的Demo Code展示,应该还会有两篇,介绍下Bitmap绘制以及Pattern等知识. Shadow shado ...
- iPhone之Quartz 2D系列--图形上下文(2)(Graphics Contexts)
以下几遍关于Quartz 2D博文都是转载自:http://www.cocoachina.com/bbs/u.php?action=topic&uid=38018 iPhone之Quartz ...
随机推荐
- 剑指offer试题(PHP篇一)
1.二维数组中的查找 题目描述 在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序.请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数. ...
- request、response的setCharacterEncoding与response的setContentType
一.request中的setCharacterEncoding方法:作用是用指定的编码集去覆盖request对象中的默认的"ISO-8859-1"编码集,如"UTF-8& ...
- jQuery smartMenu右键自定义上下文菜单插件
http://www.zhangxinxu.com/wordpress/?p=1667 <%@ page contentType="text/html; charset=UTF-8&q ...
- 017 Java中的静态代理、JDK动态代理、cglib动态代理
一.静态代理 代理模式是常用设计模式的一种,我们在软件设计时常用的代理一般是指静态代理,也就是在代码中显式指定的代理. 静态代理由业务实现类.业务代理类两部分组成.业务实现类负责实现主要的业务方法,业 ...
- Windows使用问题总结
1 电脑休眠恢复之后无法识别Wifi无线网络 首先,重启电脑:其次,打开网络和共享中心,点击更改适配器设置:最后,在对应的无线网络连接图标上点击鼠标右键,属性,配置,电源选项,允许计算机关闭此设备以节 ...
- vagrant系列教程(一):vagrant的安装与初识(转)
[参考]https://github.com/astaxie/go-best-practice/blob/master/ebook/zh/01.1.md 阅读目录 下载一个合适的box 完成一个box ...
- 【echarts3】--1 简单入门
echarts3 相信大家都了解吧,是百度研发的 ECharts 特性介绍 ECharts,一个纯 Javascript 的图表库,可以流畅的运行在 PC 和移动设备上,兼容当前绝大部分浏览器(IE8 ...
- hihoCoder 1523 数组重排2 贪心
题意:给定一个1-N的排列A1, A2, - AN,每次操作小Hi可以选择一个数,把它放到数组的最左边. 请计算小Hi最少进行几次操作就能使得新数组是递增排列的. 思路:最后的序列是递增的,那么必定满 ...
- Linux shell的问题
1.uptime命令可以查看当前系统的启动时间: w命令显示当前登录者top命令显示当前任务ps命令显示所有进程信息 uptime命令可以查看系统启动时间 2.使用shell时,默认的环境变量放在 ...
- 追溯 React Hot Loader 的实现
文:萝卜(沪江金融前端开发工程师) 本文原创,转载请注明作者及出处 如果你使用 React ,你可以在各个工程里面看到 Dan Abramov 的身影.他于 2015 年加入 facebook,是 R ...