Class AztecExtendedParameters

Class AztecExtendedParameters

이름 공간 : Aspose.BarCode.BarCodeRecognition 모임: Aspose.BarCode.dll (25.4.0)

Aztec 인식 바코드의 특수 데이터를 저장

public sealed class AztecExtendedParameters : BaseExtendedParameters

Inheritance

object BaseExtendedParameters AztecExtendedParameters

상속 회원들

BaseExtendedParameters.IsEmpty , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

이 샘플은 Aztec 원료 가치를 얻는 방법을 보여줍니다.

using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Aztec, "12345"))
{
    generator.Save(@"c:\test.png");
}
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.Aztec))
{
    foreach (BarCodeResult result in reader.ReadBarCodes())
    {
        Console.WriteLine("BarCode type: " + result.CodeTypeName);
        Console.WriteLine("BarCode codetext: " + result.CodeText);
        Console.WriteLine("Aztec barcode ID: " + result.Extended.Aztec.StructuredAppendBarcodeId);
        Console.WriteLine("Aztec barcodes count: " + result.Extended.Aztec.StructuredAppendBarcodesCount);
        Console.WriteLine("Aztec file ID: " + result.Extended.Aztec.StructuredAppendFileId);
        Console.WriteLine("Aztec is reader initialization: " + result.Extended.Aztec.IsReaderInitialization);
    }
}

Properties

IsReaderInitialization

코드가 바 코드 리더의 시작 또는 재프로그래밍에 대한 지침으로 다음 데이터를 해석하도록 독자에게 지시하는 데 사용되는지 여부를 지정합니다.가짜 가치는 가짜입니다.

public bool IsReaderInitialization { get; }

부동산 가치

bool

StructuredAppendBarcodeId

Aztec 구조화된 첨부 모드 바코드의 ID를 얻습니다. ID는 1에서 시작되며 바코드를 계산하는 것보다 적거나 동일해야합니다.

public int StructuredAppendBarcodeId { get; }

부동산 가치

int

StructuredAppendBarcodesCount

Aztec 구조화 된 첨부 모드 바코드를 계산합니다. 기본 값은 0. 계산은 1에서 26 사이의 값이어야합니다.

public int StructuredAppendBarcodesCount { get; }

부동산 가치

int

StructuredAppendFileId

Aztec 구조화된 첨부 모드의 파일 ID를 얻습니다.기본 값은 빈 줄입니다.

public string StructuredAppendFileId { get; }

부동산 가치

string

Methods

Equals(객체)

이 예제가 지정된 Aspose.BarCode.BarCodeRecognition.AztecExtendedParameters 값과 동일한지 여부를 나타내는 값을 반환합니다.

public override bool Equals(object obj)

Parameters

obj object

System.Object 값은 이 값과 비교할 수 있습니다.

Returns

bool

진짜 obj이 이 경우와 동일한 가치를 가지고 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..

GetHashCode()

이 경우 해시 코드를 반환합니다.

public override int GetHashCode()

Returns

int

32비트 전체 해시 코드가 서명되었습니다.

ToString()

이 Aspose.BarCode.BarCodeRecognition.AztecExtendedParameters의 인간 읽을 수 있는 링 대표를 반환합니다.

public override string ToString()

Returns

string

이 Aspose.BarCode.BarCodeRecognition.AztecExtended파라미터를 나타내는 라인입니다.

Operators

운영자 =(Aztec 확장파라미터, Aztec 확장파라미터)

첫 번째 Aspose.BarCode.BarCodeRecognition.AztecExtendedParameters 값이 두 번째 값과 동일한지 여부를 나타내는 값을 반환합니다.

public static bool operator ==(AztecExtendedParameters first, AztecExtendedParameters second)

Parameters

first AztecExtendedParameters

첫 번째 비교된 가치

second AztecExtendedParameters

두 번째 비교 가치

Returns

bool

진짜 첫 번째가 두 번째와 동일한 가치가 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..

운영자 !=(Aztec 확장파라미터, Aztec 확장파라미터)

첫 번째 Aspose.BarCode.BarCodeRecognition.AztecExtendedParameters 값이 두 번째 값과 다르다는 것을 나타내는 값을 반환합니다.

public static bool operator !=(AztecExtendedParameters first, AztecExtendedParameters second)

Parameters

first AztecExtendedParameters

첫 번째 비교된 가치

second AztecExtendedParameters

두 번째 비교 가치

Returns

bool

진짜 첫 번째가 두 번째와 다른 값을 가지고 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..

 한국어