importcom.perceptive.documentfilters.*;publicclassGenerateQRCode{publicstaticvoidmain(String[]args){try{// Initialize the APIApiapi=newApi();api.Initialize("License Code",".");// Create an output canvastry(Canvascanvas=api.MakeOutputCanvas("barcode.png",CanvasType.PNG.swigValue())){// Create a blank pagecanvas.BlankPage(400,400);// Create and configure the QR code annotationAnnotationQrCodeqrCode=newAnnotationQrCode();qrCode.setCaption("Hello World");qrCode.setContent("http://www.hyland.com");qrCode.setRect(newAnnotationRect(20,20,380,380));// Annotate the canvascanvas.Annotate(qrCode);}}catch(IGRExceptione){System.err.println("Error: "+e.getMessage());}}}
#include"DocumentFiltersObjects.h"intmain(){try{// Create and initialize the API objectHyland::DocFilters::Apiapi;api.Initialize("License Code",".");// Create the output canvas Hyland::DocFilters::Canvascanvas=api.MakeOutputCanvas("barcode.png",Hyland::DocFilters::CanvasType::PNG);// Set up a blank pagecanvas.BlankPage(400,400);// Create and configure the QR code annotationHyland::DocFilters::AnnotationQrCodeqrCode;qrCode.setCaption(L"Hello World");qrCode.setText(L"http://www.hyland.com");qrCode.setRect(Hyland::DocFilters::RectI32::ltrb(20,20,380,380));// Add the QR code to the canvascanvas.Annotate(qrCode);// Close the canvas (ensures the image is saved)canvas.Close();}catch(conststd::exception&e){std::cerr<<"Error: "<<e.what()<<std::endl;return1;// Indicate an error}return0;// Successful execution}