PDFWatermarkImageView.h 935 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // CPDFImageView.h
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PDFWatermarkImageView : UIView
  10. @property (nonatomic,strong) UIButton *selectBtn;
  11. @property (nonatomic,strong) UISlider *imageScaleSlider;
  12. @property (nonatomic,strong) UISlider *opacitySlider;
  13. @property (nonatomic,strong) UISwitch *tileSwitch;
  14. @property (nonatomic,strong) UILabel *rangeLabel;
  15. @property (nonatomic,strong) UILabel *tileLabel;
  16. @property (nonatomic,strong) UILabel *sizeLabel;
  17. @property (nonatomic,strong) UILabel *opacityLabel;
  18. @property (nonatomic,strong) UITextField *verticalField;
  19. @property (nonatomic,strong) UITextField *horizontalField;
  20. @property (nonatomic,strong) UILabel *verticalLabel;
  21. @property (nonatomic,strong) UILabel *horizontalLabel;
  22. @property (nonatomic,strong) UILabel *imageLabel;
  23. @property (nonatomic,strong) UIButton *pageBtn;
  24. @end
  25. NS_ASSUME_NONNULL_END