Where to find UFL (dll) and font for GS1 data matrix

Hi, we have purchased Aspose Barcode Family license but where can we download or find UFL (dll) and font for GS1 data matrix? We do not wish to generate the bar code online but on-premises. Thanks

@oroclean,

You may download our latest version of Aspose.BarCode for .NET library here and try it using its APIs. See the sample code on how to generate GS1DATAMATRIX barcode:
e.g.
Sample code:

// The path to the documents directory.
string dataDir = "directoryPath";
// Instantiate object and set differnt barcode properties
BarcodeGenerator  generator = new BarcodeGenerator (EncodeTypes.GS1DATAMATRIX, "1234567");
generator.Parameters.Barcode.XDimension.Millimeters = 1f;

// Save the image to your system and set its image format to Jpeg
generator.Save(dataDir + "output.jpg", BarCodeImageFormat.Jpeg);

Regarding how to set font, see the document (with sample examples) for your reference.

Aspose doesn’t provide barcode fonts, only library (.Net, Java, C++, PHP…) and REST API for barcode image generation. If you want to generate barcode in vector format you can generate in SVG format.