'Declaration
Public Function BarcodeAztecGetSize( _ ByVal Data As String, _ ByRef Version As BarcodeAztecCodeVersion, _ ByVal EccPercent As Integer, _ ByVal QuietZone As Integer, _ ByVal ModuleSize As Integer, _ ByRef Width As Integer, _ ByRef Height As Integer _ ) As GdPictureStatus
public GdPictureStatus BarcodeAztecGetSize( string Data, ref BarcodeAztecCodeVersion Version, int EccPercent, int QuietZone, int ModuleSize, out int Width, out int Height )
public function BarcodeAztecGetSize( Data: String; var Version: BarcodeAztecCodeVersion; EccPercent: Integer; QuietZone: Integer; ModuleSize: Integer; Out Width: Integer; Out Height: Integer ): GdPictureStatus;
public function BarcodeAztecGetSize( Data : String, Version : BarcodeAztecCodeVersion, EccPercent : int, QuietZone : int, ModuleSize : int, Width : int, Height : int ) : GdPictureStatus;
public: GdPictureStatus BarcodeAztecGetSize( string* Data, ref BarcodeAztecCodeVersion Version, int EccPercent, int QuietZone, int ModuleSize, [PARAMFLAG::Out] int Width, [PARAMFLAG::Out] int Height )
public: GdPictureStatus BarcodeAztecGetSize( String^ Data, BarcodeAztecCodeVersion% Version, int EccPercent, int QuietZone, int ModuleSize, [Out] int Width, [Out] int Height )
Parameters
- Data
- The data of the barcode to encode.
- Version
- A member of the BarcodeAztecCodeVersion enumeration. The version of the Aztec barcode. Use BarcodeAztecCodeVersionAuto to let the engine decide the minimum version required to encode all data.
- EccPercent
- The percentage of error correction codewords. It could be a value from 5 to 95. A value of 23 is recommended.
- QuietZone
- The size, in pixels, of the quiet zone around the barcode. It could be 0, because Aztec barcodes does no require a mandatory quiet zone.
- ModuleSize
- The size of each module, in pixels.
- Width
- Output parameter. The width, in pixels, required to render the whole Aztec barcode.
- Height
- Output parameter. The height, in pixels, required to render the whole Aztec barcode.
Return Value
A member of the GdPictureStatus enumeration.