Can Ostendo generate 2D Barcodes or QR codes ?

Can Ostendo generate 2D Barcodes or QR codes ?

There are in built functions within Ostendo (Available after Ostendo.exe Build 1425) that allow you to generate QR codes. These QR Codes are generated when either the report or script runs, therefore you must have an internet connection available when running these.

 

This example is used from within the Report & View Developer.

procedure Picture1OnBeforePrint(Sender: TfrxComponent);

begin

  GoogleAPIQRCode('http://chart.apis.google.com/chart?chs=80x80&cht=qr&chld=M&chl=' + ,Sender.Name);

end;

 

This example is used from within a Script:

var

  Barcode: String;

begin

  InputQuery('Barcode text', 'Enter Text', Barcode);

  run(HttpGetImageToFile('http://chart.apis.google.com/chart?chs=200x200&cht=qr&chld=M&chl=' + Barcode,OstendoPath + 'qrcode.png'));

end.

 

 

Further information can be found from the following link:

https://google-developers.appspot.com/chart/infographics/docs/overview