'DeclarationPublic Overloads Function BarcodeAztecWrite( _ ByVal ImageID As Integer, _ ByVal Data As String, _ ByRef Version As BarcodeAztecCodeVersion, _ ByVal EccPercent As Integer, _ ByVal QuietZone As Integer, _ ByVal ModuleSize As Integer, _ ByVal DstLeft As Integer, _ ByVal DstTop As Integer, _ ByVal Angle As Single, _ ByVal FillColor As GdPictureColor, _ ByVal BackColor As GdPictureColor _ ) As GdPictureStatus
public GdPictureStatus BarcodeAztecWrite( int ImageID, string Data, ref BarcodeAztecCodeVersion Version, int EccPercent, int QuietZone, int ModuleSize, int DstLeft, int DstTop, float Angle, GdPictureColor FillColor, GdPictureColor BackColor )
public function BarcodeAztecWrite( ImageID: Integer; Data: String; var Version: BarcodeAztecCodeVersion; EccPercent: Integer; QuietZone: Integer; ModuleSize: Integer; DstLeft: Integer; DstTop: Integer; Angle: Single; FillColor: GdPictureColor; BackColor: GdPictureColor ): GdPictureStatus;
public function BarcodeAztecWrite( ImageID : int, Data : String, Version : BarcodeAztecCodeVersion, EccPercent : int, QuietZone : int, ModuleSize : int, DstLeft : int, DstTop : int, Angle : float, FillColor : GdPictureColor, BackColor : GdPictureColor ) : GdPictureStatus;
public: GdPictureStatus BarcodeAztecWrite( int ImageID, string* Data, ref BarcodeAztecCodeVersion Version, int EccPercent, int QuietZone, int ModuleSize, int DstLeft, int DstTop, float Angle, GdPictureColor FillColor, GdPictureColor BackColor )
public: GdPictureStatus BarcodeAztecWrite( int ImageID, String^ Data, BarcodeAztecCodeVersion% Version, int EccPercent, int QuietZone, int ModuleSize, int DstLeft, int DstTop, float Angle, GdPictureColor FillColor, GdPictureColor BackColor )
Parameters
- ImageID
- GdPicture image identifier.
- 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.
- DstLeft
- The left position, in pixels, of the Aztec barcode.
- DstTop
- The top position, in pixels, of the Aztec barcode.
- Angle
- The Aztec barcode angle.
- FillColor
- Color of the symbols.
- BackColor
- Color of the background.
Return Value
A member of the GdPictureStatus enumeration.
