BGBeautyView.h 900 B

123456789101112131415161718192021222324
  1. //
  2. // BGBeautyView.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/2/17.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BGNameSlider.h"
  10. @interface BGBeautyView : UIView
  11. @property (nonatomic, strong) UIView *beautyBgView; // 美颜背景视图
  12. @property (nonatomic, readonly) GPUImageOutput<GPUImageInput> *curFilter; // 选择滤镜
  13. @property (nonatomic, readonly) UISegmentedControl *filterGroupType; // 滤镜组合
  14. @property (nonatomic, readonly) UIPickerView *effectPicker; // 特效滤镜
  15. // 参数调节
  16. @property (nonatomic, readonly) BGNameSlider *filterParam1; // 参数1
  17. @property (nonatomic, readonly) BGNameSlider *filterParam2; // 参数2
  18. @property (nonatomic, readonly) BGNameSlider *filterParam3; // 参数3
  19. @end