Hi,
I need only to read or extract bar code from pdf files. I need file name, no of pages and page no to read the bar code.
platform C# and .net framework.
I request u kindly quote the price for the same.
Looking for your favorable reply at the earliest.
Thanks & Regards
Customer
-------------------------------------------
Thanks for your message, VeryPDF Barcode Recognition SDK has the function to read barcodes from PDF pages, you may download the trial version of VeryPDF Barcode Recognition SDK from our website to try,
https://www.verypdf.com/app/barcode/barcode-recognition.html
https://www.verypdf.com/app/barcode/try-and-buy.html#Buy_Barcode_Recognition_SDK
https://www.verypdf.com/dl2.php/VeryPDF_BarcodeSDK.zip
You can call Barcode Recognition SDK from C# code directly, for example,
----------------------------
string appPath = Path.GetDirectoryName(Application.ExecutablePath);
System.Type VeryPDFType = System.Type.GetTypeFromProgID
("VeryPDF.BarcodeCom");
VeryPDF.BarcodeCom VeryPDFCom = (VeryPDF.BarcodeCom)
System.Activator.CreateInstance(VeryPDFType);
string appFolder = Path.GetDirectoryName(Application.ExecutablePath);
string strFolder = appFolder;
string strReturn = "";
int nFileIndex = 0;
VeryPDFCom.EnableDebugLog(true);
string strBarcodeFile = strFolder + "\\barcode.png";
strCmd = "-$ XXXXXXXXXXXXXXXXXX -decode \"" + strBarcodeFile + "\"";
strReturn += VeryPDFCom.GenerateBarcode(strCmd);
nFileIndex = nFileIndex + 1;
MessageBox.Show(strReturn);
----------------------------
If you encounter any problem with Barcode Recognition SDK, please feel free to let us know, we will assist you asap.
VeryPDF