ParsedResult
The ParsedResult interface provides a structure representing the result object returned by Dynamsoft Code Parser.
interface ParsedResult {
originalImageHashId: string;
originalImageTag: Core.ImageTag;
parsedResultItems: Array<ParsedResultItem>;
hasItem: (item: ParsedResultItem) => boolean;
removeItem: (item: ParsedResultItem) => void;
errorCode: number;
errorString: string;
}
originalImageHashId
Returns the hash id of the original image.
originalImageHashId: string;
originalImageTag
Returns the tag of the original image.
originalImageTag: Core.ImageTag;
See Also
parsedResultItems
Returns an array that contains all ParsedResultItem
s.
hasItem()
Checks whether the specified ParsedResultItem
exists.
removeItem()
Removes the specified ParsedResultItem
.
errorCode
Returns the error code for the parsing operation.
errorString
Returns the error string that corresponds with errorCode
.