ZXing.ResultMetadataType Unit

*************************************************************************** Delphi Sample Projects Copyright 1995-2024 Patrick Prémartin under AGPL 3.0 license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *************************************************************************** Set of projects demonstrating the features of the Delphi development environment, its libraries and its programming language. Some of the projects have been presented at conferences, on training courses or online coding sessions. The programs are up to date with the Community Edition and the commercial version of Delphi or RAD Studio. *************************************************************************** Author(s) : Patrick PREMARTIN Site : https://samples.developpeur-pascal.fr Project site : https://github.com/DeveloppeurPascal/Delphi-samples *************************************************************************** File last update : 2025-02-08T19:46:48.602+01:00 Signature : 79722402a8dfef5ab0476e5e02cca74b047c9846 ***************************************************************************

Package: QRCodeReader_FMX
 NameDescription
TResultMetadataType

Represents some type of metadata about the result of the decoding that the decoder wishes to communicate back to the caller.

Top
 NameDescription
AZTEC_EXTRA_METADATA

Aztec-specific metadata

BYTE_SEGMENTS

2D barcode formats typically encode text, but allow for a sort of 'byte mode' which is sometimes used to encode binary data. While {@link Result} makes available the complete raw bytes in the barcode for these formats, it does not offer the bytes from the byte segments alone.

This maps to a {@link java.util.List} of byte arrays corresponding to the raw bytes in the byte segments in the barcode, in order.

ERROR_CORRECTION_LEVEL

Error correction level used, if applicable. The value type depends on the format, but is typically a String.

ISSUE_NUMBER

For some periodicals, indicates the issue number as an {@link Integer}.

ORIENTATION

Denotes the likely approximate orientation of the barcode in the image. This value is given as degrees rotated clockwise from the normal, upright orientation. For example a 1D barcode which was found by reading top-to-bottom would be said to have orientation "90". This key maps to an {@link Integer} whose value is in the range [0,360).

OTHER

Unspecified, application-specific metadata. Maps to an unspecified {@link Object}.

PDF417_EXTRA_METADATA

PDF417-specific metadata

POSSIBLE_COUNTRY

For some products, the possible country of manufacture as a {@link String} denoting the ISO country code. Some map to multiple possible countries, like "US/CA".

STRUCTURED_APPEND_PARITY

If the code format supports structured append and the current scanned code is part of one then the parity is given with it.

STRUCTURED_APPEND_SEQUENCE

If the code format supports structured append and the current scanned code is part of one then the sequence number is given with it.

SUGGESTED_PRICE

For some products, indicates the suggested retail price in the barcode as a formatted {@link String}.

UPC_EAN_EXTENSION

For some products, the extension text

Top