PDFSignatureDrawView.h 546 B

1234567891011121314151617181920212223
  1. //
  2. // PDFSignatureDrawView.h
  3. // PDFReader
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // The PDF Reader Sample applications are licensed with a modified BSD license.
  8. // Please see License for details. This notice may not be removed from this file.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @interface PDFSignatureDrawView : UIView
  12. @property (nonatomic,retain) UIColor *color;
  13. @property (nonatomic,assign) CGFloat lineWidth;
  14. @property (nonatomic,retain) UIImage *image;
  15. - (void)clear;
  16. - (UIImage *)signatureImage;
  17. @end