PTOCROptions

@interface PTOCROptions : NSObject
{


}




- (PTOCROptions*)AddIgnoreZonesForPage: (PTPDFRectCollection*)regions page_num:  (int)page_num;
- (PTOCROptions*)AddLang: (NSString *)lang;
- (PTOCROptions*)AddTextZonesForPage: (PTPDFRectCollection*)regions page_num:  (int)page_num;
- (PTOCROptions*)AddDPI: (int)dpi;
- (PTOCROptions*)SetUsePDFPageCoords: (BOOL)value;
- (PTOCROptions*)SetIgnoreExistingText: (BOOL)value;
- (BOOL)GetAutoRotate;
- (PTOCROptions*)SetAutoRotate: (BOOL)value;
- (NSString *)GetOCREngine;
- (PTOCROptions*)SetOCREngine: (NSString *)value;
- (instancetype)init;
@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)AddIgnoreZonesForPage: (PTPDFRectCollection*)regions page_num:  (int)page_num;

    Swift

    func addIgnoreZones(forPage regions: PTPDFRectCollection!, page_num: Int32) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)AddLang: (NSString *)lang;

    Swift

    func addLang(_ lang: String!) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)AddTextZonesForPage: (PTPDFRectCollection*)regions page_num:  (int)page_num;

    Swift

    func addTextZones(forPage regions: PTPDFRectCollection!, page_num: Int32) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)AddDPI: (int)dpi;

    Swift

    func addDPI(_ dpi: Int32) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)SetUsePDFPageCoords: (BOOL)value;

    Swift

    func setUsePDFPageCoords(_ value: Bool) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)SetIgnoreExistingText: (BOOL)value;

    Swift

    func setIgnoreExistingText(_ value: Bool) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (BOOL)GetAutoRotate;

    Swift

    func getAutoRotate() -> Bool
  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)SetAutoRotate: (BOOL)value;

    Swift

    func setAutoRotate(_ value: Bool) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (NSString *)GetOCREngine;

    Swift

    func getOCREngine() -> String!
  • Undocumented

    Declaration

    Objective-C

    - (PTOCROptions*)SetOCREngine: (NSString *)value;

    Swift

    func setOCREngine(_ value: String!) -> PTOCROptions!
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)init;

    Swift

    init!()