ComplexBarcodeGenerator Class

ComplexBarcodeGenerator for backend complex barcode (e.g. SwissQR) images generation.
Inheritance Hierarchy

Namespace:  Aspose.BarCode.ComplexBarcode
Assembly:  Aspose.BarCode (in Aspose.BarCode.dll) Version: 20.11.0
Syntax
public sealed class ComplexBarcodeGenerator : Component

The ComplexBarcodeGenerator type exposes the following members.

Constructors
  NameDescription
Public methodComplexBarcodeGenerator
Creates an instance of ComplexBarcodeGenerator.
Properties
  NameDescription
Public propertyContainer (Inherited from Component.)
Public propertyParameters
Generation parameters.
Public propertySite (Inherited from Component.)
Methods
  NameDescription
Public methodCreateObjRef (Inherited from MarshalByRefObject.)
Public methodDispose (Inherited from Component.)
Public methodEquals (Inherited from Object.)
Public methodGenerateBarCodeImage
Generates complex barcode image under current settings.
Public methodGetHashCode (Inherited from Object.)
Public methodGetLifetimeService (Inherited from MarshalByRefObject.)
Public methodGetType (Inherited from Object.)
Public methodInitializeLifetimeService (Inherited from MarshalByRefObject.)
Public methodSave(String)
Generates and saves complex barcode image under current settings.
Public methodSave(Stream, BarCodeImageFormat)
Generates and saves complex barcode image under current settings.
Public methodSave(String, BarCodeImageFormat)
Generates and saves complex barcode image under current settings.
Public methodToString (Inherited from Component.)
Events
  NameDescription
Public eventDisposed (Inherited from Component.)
Examples
This sample shows how to create and save a SwissQR image.
[C#]
  var swissQRCodetext = new SwissQRCodetext();
  swissQRCodetext.Bill.Account = "Account";
  swissQRCodetext.Bill.BillInformation = "BillInformation";
  // init rest of the fields
  using (var cg = new ComplexBarcodeGenerator(swissQRCodetext))
  {
    var res = cg.GenerateBarCodeImage();
  }
See Also