LHSIDCardScaningView.m 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. //
  2. // LHSIDCardScaningView.m
  3. // 身份证识别
  4. //
  5. // Created by huashan on 2017/2/17.
  6. // Copyright © 2017年 LiHuashan. All rights reserved.
  7. //
  8. #import "LHSIDCardScaningView.h"
  9. // iPhone5/5c/5s/SE 4英寸 屏幕宽高:320*568点 屏幕模式:2x 分辨率:1136*640像素
  10. #define iPhone5or5cor5sorSE ([UIScreen mainScreen].bounds.size.height == 568.0)
  11. // iPhone6/6s/7 4.7英寸 屏幕宽高:375*667点 屏幕模式:2x 分辨率:1334*750像素
  12. #define iPhone6or6sor7 ([UIScreen mainScreen].bounds.size.height == 667.0)
  13. // iPhone6 Plus/6s Plus/7 Plus 5.5英寸 屏幕宽高:414*736点 屏幕模式:3x 分辨率:1920*1080像素
  14. #define iPhone6Plusor6sPlusor7Plus ([UIScreen mainScreen].bounds.size.height == 736.0)
  15. @interface LHSIDCardScaningView () {
  16. CAShapeLayer *_IDCardScanningWindowLayer;
  17. NSTimer *_timer;
  18. }
  19. @end
  20. @implementation LHSIDCardScaningView
  21. - (instancetype)initWithFrame:(CGRect)frame {
  22. if (self = [super initWithFrame:frame]) {
  23. self.backgroundColor = [UIColor clearColor];
  24. // 添加扫描窗口
  25. [self addScaningWindow];
  26. // 添加定时器
  27. [self addTimer];
  28. }
  29. return self;
  30. }
  31. #pragma mark - 添加扫描窗口
  32. -(void)addScaningWindow {
  33. // 中间包裹线
  34. _IDCardScanningWindowLayer = [CAShapeLayer layer];
  35. _IDCardScanningWindowLayer.position = self.layer.position;
  36. CGFloat width = iPhone5or5cor5sorSE? 240: (iPhone6or6sor7? 270: 300);
  37. _IDCardScanningWindowLayer.bounds = (CGRect){CGPointZero, {width, width * 1.574}};
  38. _IDCardScanningWindowLayer.cornerRadius = 15;
  39. _IDCardScanningWindowLayer.borderColor = [UIColor whiteColor].CGColor;
  40. _IDCardScanningWindowLayer.borderWidth = 1.5;
  41. [self.layer addSublayer:_IDCardScanningWindowLayer];
  42. // 最里层镂空
  43. UIBezierPath *transparentRoundedRectPath = [UIBezierPath bezierPathWithRoundedRect:_IDCardScanningWindowLayer.frame cornerRadius:_IDCardScanningWindowLayer.cornerRadius];
  44. // 最外层背景
  45. UIBezierPath *path = [UIBezierPath bezierPathWithRect:self.frame];
  46. [path appendPath:transparentRoundedRectPath];
  47. [path setUsesEvenOddFillRule:YES];
  48. CAShapeLayer *fillLayer = [CAShapeLayer layer];
  49. fillLayer.path = path.CGPath;
  50. fillLayer.fillRule = kCAFillRuleEvenOdd;
  51. fillLayer.fillColor = [UIColor blackColor].CGColor;
  52. fillLayer.opacity = 0.6;
  53. [self.layer addSublayer:fillLayer];
  54. }
  55. -(void)loadImage
  56. {
  57. CGRect rect = _IDCardScanningWindowLayer.frame;
  58. // 提示标签
  59. CGPoint center = self.center;
  60. center.x = CGRectGetMaxX(_IDCardScanningWindowLayer.frame) + 20;
  61. if(_cardType == 0)
  62. {
  63. [self addTipLabelWithText:@"将身份证人像面置于此区域内,头像对准,扫描" center:center];
  64. CGFloat facePathWidth = iPhone5or5cor5sorSE? 125: (iPhone6or6sor7? 150: 180);
  65. CGFloat facePathHeight = facePathWidth * 0.89;
  66. self.facePathRect = (CGRect){CGRectGetMaxX(rect) - facePathWidth - 35,CGRectGetMaxY(rect) - facePathHeight - 25,facePathWidth,facePathHeight};
  67. // 人像
  68. UIImageView *headIV = [[UIImageView alloc] initWithFrame:_facePathRect];
  69. headIV.image = [UIImage imageNamed:@"idcard_first_head"];
  70. headIV.transform = CGAffineTransformMakeRotation(M_PI * 0.5);
  71. headIV.contentMode = UIViewContentModeScaleAspectFill;
  72. [self addSubview:headIV];
  73. }
  74. else
  75. {
  76. [self addTipLabelWithText:@"将身份证背面置于此区域内,国徽对准,扫描" center:center];
  77. CGFloat facePathWidth = iPhone5or5cor5sorSE? 80: (iPhone6or6sor7? 110: 160);
  78. CGFloat facePathHeight = facePathWidth * 0.89;
  79. self.facePathRect = (CGRect){CGRectGetMaxX(rect) - 30 - facePathWidth, CGRectGetMinY(rect) + 30,facePathWidth,facePathHeight};
  80. // 人像
  81. UIImageView *headIV = [[UIImageView alloc] initWithFrame:_facePathRect];
  82. headIV.image = [UIImage imageNamed:@"idcard_first_head_gh"];
  83. headIV.transform = CGAffineTransformMakeRotation(M_PI * 0.5);
  84. headIV.contentMode = UIViewContentModeScaleAspectFill;
  85. [self addSubview:headIV];
  86. }
  87. }
  88. #pragma mark - 添加提示标签
  89. -(void )addTipLabelWithText:(NSString *)text center:(CGPoint)center {
  90. UILabel *tipLabel = [[UILabel alloc] init];
  91. tipLabel.text = text;
  92. tipLabel.textColor = [UIColor whiteColor];
  93. tipLabel.textAlignment = NSTextAlignmentCenter;
  94. tipLabel.transform = CGAffineTransformMakeRotation(M_PI * 0.5);
  95. [tipLabel sizeToFit];
  96. tipLabel.center = center;
  97. [self addSubview:tipLabel];
  98. }
  99. #pragma mark - 添加定时器
  100. -(void)addTimer {
  101. _timer = [NSTimer scheduledTimerWithTimeInterval:0.02 target:self selector:@selector(timerFire:) userInfo:nil repeats:YES];
  102. [_timer fire];
  103. }
  104. -(void)timerFire:(id)notice {
  105. [self setNeedsDisplay];
  106. }
  107. -(void)dealloc {
  108. [_timer invalidate];
  109. }
  110. - (void)drawRect:(CGRect)rect {
  111. rect = _IDCardScanningWindowLayer.frame;
  112. // 人像提示框
  113. UIBezierPath *facePath = [UIBezierPath bezierPathWithRect:_facePathRect];
  114. facePath.lineWidth = 1.5;
  115. [[UIColor whiteColor] set];
  116. [facePath stroke];
  117. // 水平扫描线
  118. CGContextRef context = UIGraphicsGetCurrentContext();
  119. static CGFloat moveX = 0;
  120. static CGFloat distanceX = 0;
  121. CGContextBeginPath(context);
  122. CGContextSetLineWidth(context, 2);
  123. CGContextSetRGBStrokeColor(context,0.3,0.8,0.3,0.8);
  124. CGPoint p1, p2;// p1, p2 连成水平扫描线;
  125. moveX += distanceX;
  126. if (moveX >= CGRectGetWidth(rect) - 2) {
  127. distanceX = -2;
  128. } else if (moveX <= 2){
  129. distanceX = 2;
  130. }
  131. p1 = CGPointMake(CGRectGetMaxX(rect) - moveX, rect.origin.y);
  132. p2 = CGPointMake(CGRectGetMaxX(rect) - moveX, rect.origin.y + rect.size.height);
  133. CGContextMoveToPoint(context,p1.x, p1.y);
  134. CGContextAddLineToPoint(context, p2.x, p2.y);
  135. /*
  136. // 竖直扫描线
  137. static CGFloat moveY = 0;
  138. static CGFloat distanceY = 0;
  139. CGPoint p3, p4;// p3, p4连成竖直扫描线
  140. moveY += distanceY;
  141. if (moveY >= CGRectGetHeight(rect) - 2) {
  142. distanceY = -2;
  143. } else if (moveY <= 2) {
  144. distanceY = 2;
  145. }
  146. p3 = CGPointMake(rect.origin.x, rect.origin.y + moveY);
  147. p4 = CGPointMake(rect.origin.x + rect.size.width, rect.origin.y + moveY);
  148. CGContextMoveToPoint(context,p3.x, p3.y);
  149. CGContextAddLineToPoint(context, p4.x, p4.y);
  150. */
  151. CGContextStrokePath(context);
  152. }
  153. // Only override drawRect: if you perform custom drawing.
  154. // An empty implementation adversely affects performance during animation.
  155. //- (void)drawRect:(CGRect)rect {
  156. // // Drawing code
  157. // [[UIColor colorWithWhite:0 alpha:0.7] setFill];
  158. // // 半透明区域
  159. // UIRectFill(rect);
  160. //
  161. // // 透明区域
  162. // CGRect holeRection = self.layer.sublayers[0].frame;
  163. // /** union: 并集
  164. // CGRect CGRectUnion(CGRect r1, CGRect r2)
  165. // 返回并集部分rect
  166. // */
  167. //
  168. // /** Intersection: 交集
  169. // CGRect CGRectIntersection(CGRect r1, CGRect r2)
  170. // 返回交集部分rect
  171. // */
  172. // CGRect holeiInterSection = CGRectIntersection(holeRection, rect);
  173. // [[UIColor clearColor] setFill];
  174. //
  175. // //CGContextClearRect(ctx, <#CGRect rect#>)
  176. // //绘制
  177. // //CGContextDrawPath(ctx, kCGPathFillStroke);
  178. // UIRectFill(holeiInterSection);
  179. //}
  180. @end