Barcode Reader CLI
Integration
C#
using system; using system io; using system runtime compilerservices; string\[] args = { " type=code128", "https //wabr inliteresearch com/sampleimages/1d pdf", "@\\" /brcli example config\\"" // additional options and sources in configuration file }; string output; string error; using (process proc = new process()) { proc startinfo = new processstartinfo { filename = " /barcodereadercli", arguments = string join(" ", args), useshellexecute = false, redirectstandardoutput = true, redirectstandarderror = true, }; 	proc start(); 	error = proc standarderror readtoend(); 	output = proc standardoutput readtoend(); 	proc waitforexit(); }; if (output != "") console writeline("stdout \n" + output); if (error != "") console writeline("stderr \n" + error); brcli example config # silent type=code39 \# image from url https //wabr inliteresearch com/sampleimages/1d pdf \# image from local folder /images/test tif