PSPDFAnnotationAppearanceStream

Objective-C


@interface PSPDFAnnotationAppearanceStream : NSObject

Swift

class AppearanceStream : NSObject

A PSPDFAnnotationAppearanceStream manages an image to include as part of an annotation appearance (ie. a handwritten signature). Supported filetypes are .JPG and .PDF. For PDF files, the first page of the document is used.

  • Unavailable

    Not the designated initializer

    Undocumented

    Declaration

    Objective-C

    PSPDF_EMPTY_INIT_UNAVAILABLE
  • Unavailable

    Not the designated initializer

    Undocumented

    Declaration

    Objective-C

    PSPDF_EMPTY_INIT_UNAVAILABLE
  • Undocumented

    Declaration

    Objective-C

    + (instancetype)appearanceStreamWithImage:(UIImage *)image;

    Swift

    convenience init(image: UIImage)
  • Undocumented

    Declaration

    Objective-C

    + (instancetype)appearanceStreamWithFileURL:(NSURL *)imageFileURL;

    Swift

    convenience init(fileURL imageFileURL: URL)
  • The image that will be added to the annotation appearance stream.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) UIImage *image;

    Swift

    var image: UIImage? { get }
  • The URL of the asset that will be added to the annotation appearance stream. JPG or PDF files are supported.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSURL *imageFileURL;

    Swift

    var imageFileURL: URL? { get }