Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading and decoding PDF-417 barcodes stored in an image or PDF file from within a .NET application

I am looking for a .NET library that is able to decode data from a PDF-417 barcode that is embedded either in an image file or PDF. At this point, I have only been able to find a Java version and a C version.

Ideally, this library would be both open-source and free of charge, but I doubt such a decoder exists.

I am open to trying out demos of existing products that you may have had experience with - which leads me to the question - have you had any experience reading PDF-417 barcodes embedded in images or PDFs using .NET, and which of the available products would you recommend to do so?

like image 249
John Rasch Avatar asked Mar 02 '09 22:03

John Rasch


2 Answers

I've just successfully integrated the ZXing .Net port from java. It's not as powerful as other paid SDK's - for instance it couldn't detect barcodes in a rotated image. However, it's free and might work for you if you're on a budget. Generally you'll find the paid SDKs cost $400 and up. It has over a million downloads on Nuget, if that means anything.

https://github.com/micjahn/ZXing.Net

like image 60
Savage Avatar answered Sep 27 '22 18:09

Savage


We use components (not free) from IDAutomation for PDF417. They are very good. We use them for encoding, as opposed to reading and decoding.

Haven't used this component of theirs, but have a look it is C#, and you can obtain the source code, but again, not free.

http://www.idautomation.com/barcode-recognition/

like image 34
MikeW Avatar answered Sep 27 '22 19:09

MikeW