-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from BlinkID/feature/v1.4.0
Feature/v1.4.0
- Loading branch information
Showing
129 changed files
with
1,594 additions
and
6,173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
MicroBlink.framework/**/* filter=lfs diff=lfs merge=lfs -text | ||
MicroBlink.bundle/**/* filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Git LFS file not shown
123 changes: 3 additions & 120 deletions
123
MicroBlink.framework/Headers/PPBarDecoderRecognizerResult.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,120 +1,3 @@ | ||
// | ||
// PPBarDecoderRecognizerResult.h | ||
// Pdf417Framework | ||
// | ||
// Created by Jura on 11/07/15. | ||
// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPRecognizerResult.h" | ||
#import "PPBarcodeDetailedData.h" | ||
|
||
/** | ||
* Type of the barcode which BarDecoderRecognizer returnes | ||
*/ | ||
typedef NS_ENUM(NSUInteger, PPBarDecoderBarcodeType){ | ||
/** Code 128 */ | ||
PPBarDecoderBarcodeTypeCode128, | ||
/** Code 39 */ | ||
PPBarDecoderBarcodeTypeCode39 | ||
}; | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Result of scanning with BarDecoder Recognizer | ||
* | ||
* Contains raw Barcode detailed data, barcode type, and methods for getting string representation of results. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPBarDecoderRecognizerResult : PPRecognizerResult | ||
|
||
/** | ||
* Type of the barcode scanned | ||
* | ||
* @return Type of the barcode | ||
*/ | ||
- (PPBarDecoderBarcodeType)barcodeType; | ||
|
||
/** | ||
* Flag indicating uncertain scanning data | ||
* E.g obtained from damaged barcode. | ||
*/ | ||
- (BOOL)isUncertain; | ||
|
||
/** | ||
* Byte array with result of the scan | ||
*/ | ||
- (NSData *)data; | ||
|
||
/** | ||
* Retrieves string content of the scanned data using guessed encoding. | ||
* | ||
* If you're 100% sure you know the exact encoding in the barcode, use stringUsingEncoding: method. | ||
* Otherwise stringUsingDefaultEncoding. | ||
* | ||
* This method uses NSString stringEncodingForData:encodingOptions:convertedString:usedLossyConversion: method for | ||
* guessing the encoding. | ||
* | ||
* @return created string, or nil if encoding couldn't be found. | ||
*/ | ||
- (NSString *)stringUsingGuessedEncoding; | ||
|
||
/** | ||
* Retrieves string content of the scanned data using given encoding. | ||
* | ||
* @param encoding The encoding for the returned string. | ||
* | ||
* @return String created from data property, using given encoding | ||
*/ | ||
- (NSString *)stringUsingEncoding:(NSStringEncoding)encoding; | ||
|
||
/** | ||
* Raw barcode detailed result | ||
*/ | ||
- (PPBarcodeDetailedData *)rawData; | ||
|
||
|
||
/** | ||
* Byte array with extended result of the scan, if available. | ||
*/ | ||
- (NSData *)extendedData; | ||
|
||
/** | ||
* Retrieves string content of the extended scanned data using guessed encoding. | ||
* | ||
* If you're 100% sure you know the exact encoding in the barcode, use stringUsingEncoding: method. | ||
* Otherwise stringUsingDefaultEncoding. | ||
* | ||
* This method uses NSString stringEncodingForData:encodingOptions:convertedString:usedLossyConversion: method for | ||
* guessing the encoding. | ||
* | ||
* @return created string, or nil if encoding couldn't be found. | ||
*/ | ||
- (NSString *)extendedStringUsingGuessedEncoding; | ||
|
||
/** | ||
* Retrieves string content of the extended scanned data using given encoding. | ||
* | ||
* @param encoding The encoding for the returned string. | ||
* | ||
* @return String created from extendedData property, using given encoding | ||
*/ | ||
- (NSString *)extendedStringUsingEncoding:(NSStringEncoding)encoding; | ||
|
||
/** | ||
* Extended Raw barcode detailed result | ||
*/ | ||
- (PPBarcodeDetailedData *)extendedRawData; | ||
|
||
/** | ||
* Method which gives string representation for a given PPBarDecoderBarcodeType enum value. | ||
* | ||
* @param type PPBarDecoderBarcodeType enum value | ||
* | ||
* @return String representation of a given PPBarDecoderBarcodeType enum value. | ||
*/ | ||
+ (NSString *)toTypeName:(PPBarDecoderBarcodeType)type; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END | ||
version https://git-lfs.github.com/spec/v1 | ||
oid sha256:ec3eedb4f41f47d27815a4a4f3dbee39caac1d8e196b2e2962463089840de675 | ||
size 3173 |
64 changes: 3 additions & 61 deletions
64
MicroBlink.framework/Headers/PPBarDecoderRecognizerSettings.h
Git LFS file not shown
Git LFS file not shown
35 changes: 3 additions & 32 deletions
35
MicroBlink.framework/Headers/PPBaseOverlayViewController.h
Git LFS file not shown
Git LFS file not shown
Oops, something went wrong.