2
0

LBXScanViewStyle.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. //
  2. // LBXScanViewStyle.h
  3. //
  4. // github:https://github.com/MxABC/LBXScan
  5. // Created by lbxia on 15/11/15.
  6. // Copyright © 2015年 lbxia. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. /**
  11. 扫码区域动画效果
  12. */
  13. typedef NS_ENUM(NSInteger,LBXScanViewAnimationStyle)
  14. {
  15. LBXScanViewAnimationStyle_LineMove, //线条上下移动
  16. LBXScanViewAnimationStyle_NetGrid,//网格
  17. LBXScanViewAnimationStyle_LineStill,//线条停止在扫码区域中央
  18. LBXScanViewAnimationStyle_None //无动画
  19. };
  20. /**
  21. 扫码区域4个角位置类型
  22. */
  23. typedef NS_ENUM(NSInteger, LBXScanViewPhotoframeAngleStyle)
  24. {
  25. LBXScanViewPhotoframeAngleStyle_Inner,//内嵌,一般不显示矩形框情况下
  26. LBXScanViewPhotoframeAngleStyle_Outer,//外嵌,包围在矩形框的4个角
  27. LBXScanViewPhotoframeAngleStyle_On //在矩形框的4个角上,覆盖
  28. };
  29. NS_ASSUME_NONNULL_BEGIN
  30. @interface LBXScanViewStyle : NSObject
  31. #pragma mark -中心位置矩形框
  32. /**
  33. @brief 是否需要绘制扫码矩形框,默认YES
  34. */
  35. @property (nonatomic, assign) BOOL isNeedShowRetangle;
  36. /**
  37. * 默认扫码区域为正方形,如果扫码区域不是正方形,设置宽高比
  38. */
  39. @property (nonatomic, assign) CGFloat whRatio;
  40. /**
  41. @brief 矩形框(视频显示透明区)域向上移动偏移量,0表示扫码透明区域在当前视图中心位置,< 0 表示扫码区域下移, >0 表示扫码区域上移
  42. */
  43. @property (nonatomic, assign) CGFloat centerUpOffset;
  44. /**
  45. * 矩形框(视频显示透明区)域离界面左边及右边距离,默认60
  46. */
  47. @property (nonatomic, assign) CGFloat xScanRetangleOffset;
  48. /**
  49. @brief 矩形框线条颜色
  50. */
  51. @property (nonatomic, strong) UIColor *colorRetangleLine;
  52. #pragma mark -矩形框(扫码区域)周围4个角
  53. /**
  54. @brief 扫码区域的4个角类型
  55. */
  56. @property (nonatomic, assign) LBXScanViewPhotoframeAngleStyle photoframeAngleStyle;
  57. //4个角的颜色
  58. @property (nonatomic, strong) UIColor* colorAngle;
  59. //扫码区域4个角的宽度和高度
  60. @property (nonatomic, assign) CGFloat photoframeAngleW;
  61. @property (nonatomic, assign) CGFloat photoframeAngleH;
  62. /**
  63. @brief 扫码区域4个角的线条宽度,默认6,建议8到4之间
  64. */
  65. @property (nonatomic, assign) CGFloat photoframeLineW;
  66. #pragma mark --动画效果
  67. /**
  68. @brief 扫码动画效果:线条或网格
  69. */
  70. @property (nonatomic, assign) LBXScanViewAnimationStyle anmiationStyle;
  71. /**
  72. * 动画效果的图像,如线条或网格的图像,如果为nil,表示不需要动画效果
  73. */
  74. @property (nonatomic,strong,nullable) UIImage *animationImage;
  75. #pragma mark -非识别区域颜色,默认 RGBA (0,0,0,0.5)
  76. /**
  77. must be create by [UIColor colorWithRed: green: blue: alpha:]
  78. */
  79. @property (nonatomic, strong) UIColor *notRecoginitonArea;
  80. @end
  81. NS_ASSUME_NONNULL_END