RGLImageInput

@interface RGLImageInput : NSObject

/**
 An image
 */
@property(nonatomic, strong, readonly, nonnull) UIImage *image;
/**
 Light type, one of RGLGraphicFieldLight values
 */
@property(nonatomic, assign, readonly) RGLGraphicFieldLight lightType;
/**
 An index of the document page whence the graphic field is extracted
 */
@property(nonatomic, assign, readonly) NSInteger pageIndex;

- (instancetype)initWithImage:(UIImage *)image light:(RGLGraphicFieldLight)light pageIndex:(NSInteger)pageIndex;

@end

Undocumented

  • An image

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nonnull) UIImage *image;
  • Light type, one of RGLGraphicFieldLight values

    Declaration

    Objective-C

    @property (nonatomic, readonly) RGLGraphicFieldLight lightType;
  • An index of the document page whence the graphic field is extracted

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger pageIndex;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithImage:(UIImage *)image light:(RGLGraphicFieldLight)light pageIndex:(NSInteger)pageIndex;