Resource Base
Table of contents

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 ParsedResultItems.

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.

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

latest version

    • Latest version(2.2.10)
    • Version 2.x
      • Version 2.0.20
    • Version 1.x
      • Version 1.1.0
      • Version 1.0.2
    Change +
    © 2003–2024 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support