ios開發實現畫板功能
最近看了一些網上的畫板demo,這些demo的實現方式基本上是使用CGContextRef或者UIBezierPath實現,但是基本上都存在一個比較嚴重的bug,在使用擦除功能的時候基本上都是直接將畫板的顏色改為背景的顏色,那麼當背景的是一張圖片或者背景並不是單一顏色而是多種顏色時,擦除功能就會失效。本demo文章將解決這樣一個問題。按照國際慣例先上圖。
demo主要使用CGContextRef實現,擦除功能使用kCGBlendModeDestinationIn和clearColor聯合使用實現。
1、新建DWStroke類儲存CGContextRef資訊
DWStroke.h
#import <UIKit/UIKit.h>
typedef struct CGPath *CGMutablePathRef;
typedef enum CGBlendMode CGBlendMode;
@interface DWStroke : NSObject
@property (nonatomic) CGMutablePathRef path;
@property (nonatomic, assign) CGBlendMode blendMode;
@property (nonatomic, assign) CGFloat strokeWidth;
@property (nonatomic, strong) UIColor *lineColor;
- (void)strokeWithContext:(CGContextRef)context;
@end
DWStroke.m
- (void)strokeWithContext:(CGContextRef)context {
CGContextSetStrokeColorWithColor(context, [_lineColor CGColor]);
CGContextSetLineWidth(context, _strokeWidth);
CGContextSetBlendMode(context, _blendMode);
CGContextBeginPath(context);
CGContextAddPath(context, _path);
CGContextStrokePath(context);
}
2、畫板
DrawTouchPointView.h
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
@interface DrawTouchPointView : UIView
/** 清屏 */
- (void)clearScreen;
/** 撤消操作 */
- (void)revokeScreen;
/** 擦除 */
- (void)eraseSreen;
/** 設定畫筆顏色 */
- (void)setStrokeColor:(UIColor *)lineColor;
/** 設定畫筆大小 */
- (void)setStrokeWidth:(CGFloat)lineWidth;
@end
DrawTouchPointView.m
@interface DrawTouchPointView () {
CGMutablePathRef currentPath;//路徑
}
//是否擦除
@property (nonatomic, assign) BOOL isEarse;
//儲存所有的路徑
@property (nonatomic, strong) NSMutableArray *stroks;
//畫筆顏色
@property (nonatomic, strong) UIColor *lineColor;
//線條寬度
@property (nonatomic, assign) CGFloat lineWidth;
@end
初始化 ,背景顏色必須為[UIColor clearColor]
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
_stroks = [[NSMutableArray alloc] initWithCapacity:1];
self.backgroundColor = [UIColor clearColor];
}
return self;
}
當使用者點選畫板儲存路徑的基本資訊,並畫起始點,根據使用擦除來設定blendMode屬性和畫筆的寬度,如果是擦除則blendMode = kCGBlendModeDestinationIn,畫筆的大小為20,畫筆顏色為[UIColor clearColor]
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
currentPath = CGPathCreateMutable();
DWStroke *stroke = [[DWStroke alloc] init];
stroke.path = currentPath;
stroke.blendMode = _isEarse ? kCGBlendModeDestinationIn : kCGBlendModeNormal;
stroke.strokeWidth = _isEarse ? 20.0 : _lineWidth;
stroke.lineColor = _isEarse ? [UIColor clearColor] : _lineColor;
[_stroks addObject:stroke];
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
// CGAffineTransform transform = CGAffineTransformMakeTranslation(0, 0);
// CGPathAddArc(currentPath, &transform, point.x, point.y, _lineWidth/2.0, 0, 2*M_PI, 1);
CGPathMoveToPoint(currentPath, NULL, point.x, point.y);
// [self setNeedsDisplay];
}
開始移動, setNeedsDisplay 系統自動呼叫- (void)drawRect:(CGRect)rect
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
CGPathAddLineToPoint(currentPath, NULL, point.x, point.y);
[self setNeedsDisplay];
}
在- (void)drawRect:(CGRect)rect中畫圖
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
for (DWStroke *stroke in _stroks) {
[stroke strokeWithContext:context];
}
}
清屏功能主要是移除陣列中所有的路徑並呼叫[self setNeedsDisplay]、設定_isEarse = NO
撤消功能主要是移除陣列中最後一個物件並呼叫[self setNeedsDisplay]、設定_isEarse = NO
擦除功能只需修改isEarse屬性為YES
畫筆功能修改lineColor屬性並設定_isEarse = NO
畫筆大小功能修改strokeWidth屬性並設定_isEarse = NO
/** 清屏 */
- (void)clearScreen {
_isEarse = NO;
[_stroks removeAllObjects];
[self setNeedsDisplay];
}
/** 撤消操作 */
- (void)revokeScreen {
_isEarse = NO;
[_stroks removeLastObject];
[self setNeedsDisplay];
}
/** 擦除 */
- (void)eraseSreen {
self.isEarse = YES;
}
/** 設定畫筆顏色 */
- (void)setStrokeColor:(UIColor *)lineColor {
_isEarse = NO;
self.lineColor = lineColor;
// [self setNeedsDisplay];
}
/** 設定畫筆大小 */
- (void)setStrokeWidth:(CGFloat)lineWidth {
_isEarse = NO;
self.lineWidth = lineWidth;
}
- (void)dealloc {
CGPathRelease(currentPath);
}
打完收工,有什麼問題歡迎指出!demo:http://code.cocoachina.com/view/135225
https://github.com/wuzaozhou/iOSDrawingBoard
相關文章
- iOS開發之畫圖板(貝塞爾曲線)iOS
- iOS開發-清理快取功能的實現iOS快取
- Cocos Creator 實現畫板(你畫我猜)
- Java 從零開始實現一個畫圖板、以及影像處理功能,程式碼可復現Java
- iOS 畫板 塗鴉 答題iOS
- iOS開發專案實戰——Swift實現ScrollView滾動條功能iOSSwiftView
- 用canvas實現一個簡單的畫板Canvas
- react-native實現畫筆功能React
- canvas畫素畫板Canvas
- iOS開發登入頁面的實現iOS
- iOS開發-探索scrollView的實現iOSView
- 手把手教你實現一個canvas智繪畫板Canvas
- canvas實現的簡單畫板效果程式碼例項Canvas
- 20 行 JS 程式碼實現貼上板功能JS
- ios學記0008-畫板drawingBoardiOS
- iOS14剪下板探究,淘寶實現方法分析iOS
- iOS中使用OpenGL 實現增高功能iOS
- iOS快取清理功能的實現iOS快取
- [分享]iOS開發-CGContextRef畫圖小結iOSGCContext
- iOS內實現h5原生開發iOSH5
- iOS開發UIScrollView的底層實現iOSUIView
- iOS開發之微信聊天頁面實現iOS
- iOS專案開發實戰——使用CoreLocation實現定位iOS
- iOS Simulator功能介紹關於Xamarin IOS開發iOS
- RK3588開發板豐富的功能介面
- AJAX實現留言板資訊展開
- ARM開發板實現雙系統引導的一種方法——基於迅為iTOP-4412開發板
- Android 利用 Canvas 畫畫板AndroidCanvas
- 使用 iOS OpenGL ES 實現長腿功能iOS
- iOS 開發之模糊效果的五種實現iOS
- iOS開發筆記(五):UIScrollView實現原理iOS筆記UIView
- iOS專案開發實戰——使用UICollectionView實現瀑布流iOSUIView
- 前端學習筆記----canvas實現畫板及定製畫筆(畫筆錯位,撤回,粗細,顏色)前端筆記Canvas
- Canvas畫板—手機上也可以用的畫板Canvas
- 蘋果新專利:iOS正研發虛擬標尺畫圖功能蘋果iOS
- android開發實現記憶體優化功能Android記憶體優化
- 網頁中文字朗讀功能開發實現網頁
- iOS專案開發實戰——實現檢視切換動畫iOS動畫