Questions tagged [pdf417]

PDF417 is a stacked linear barcode symbol format used in a variety of applications, primarily transport, identification cards, and inventory management.

PDF417 is a stacked linear barcode symbol format used in a variety of applications, primarily transport, identification cards, and inventory management. PDF stands for Portable Data File. The 417 signifies that each pattern in the code consists of 4 bars and spaces, and that each pattern is 17 units long.

Wikipedia contributors, "PDF417," Wikipedia, The Free Encyclopedia, http://en.wikipedia.org/w/index.php?title=PDF417&oldid=625193818 (accessed December 15, 2014).

References:

96 questions
3
votes
1 answer

Error generating PDF417 with TCPDF using 13 digits

well, I have a very strange problem generating 2D-Barcodes (PDF417) with PHP using TCPDF (TCPDF-Website). This is my small code:
2
votes
0 answers

How to add padding to "cv2.getStructuringElement" margins

I am using OpenCV to dynamically detect barcodes on licenses. The cv2 method getStructingElement creates a rectangle around the barcode. How can I add padding to all sides of the barcode borders? The contour is fit too tightly on the barcode, such…
2
votes
0 answers

Javascript Barcode/OCR reader for PDF-417 format

I am trying to implement a javascript/react code to scan barcode of PDF-417 format. I havent done this before. On researching I found: https://github.com/PeculiarVentures/js-zxing-pdf417 based on https://github.com/zxing/zxing, but it seems to be…
2
votes
0 answers

how to read a pdf417 decode with the pc web camera

I am trying to read a pdf417 code with the computer's web camera using the zxing library in angular but I do not recognize the pdf417 format, any idea of ​​how I can read this and extract the data from an identification card with the web camera from…
2
votes
0 answers

NotFoundException decoding PDF 417

I use ZXing 3.3.1 library in a Java project to read PDF 417 from images file (scanned from paper and saved as jpg, jpeg). The library works well for some files, and badly for as many files. The configuration I use: @SuppressWarnings({ "unchecked",…
G. Scimeca
  • 36
  • 2
2
votes
2 answers

Zxing Embedded Barcode Reader using (BarcodeView)

My question is when scanning a pdf417 barcode format sometimes it returns a UPC_E format base on the scan result? here is a snippet of my code private BarcodeView barcodeView; private BarcodeCallback callback = new BarcodeCallback() { …
Renz Manacmol
  • 869
  • 12
  • 27
2
votes
1 answer

How to decode INE/IFE mexican passport data

I am looking a way to decode raw binary data written in PDF417 barcode at the backside of mexican passport card (aka IFE/INE). I've read the data from PDF417 code using scanner software and I got this 0000 31 64 30 8b d6 5f c8 2e 4d 95 8c 97 31 cf…
Epsiloncool
  • 1,435
  • 16
  • 39
2
votes
1 answer

Trying to use a PDF417 barcode scanning SDK in my project.

I am trying to create a barcode scanning hybrid mobile application that can read a PDF417 barcode. I am currently using PDF417 phonegap plugin by Microblink for the task. This works perfectly for scanning the barcode, but now there are new use…
2
votes
1 answer

Trouble using PDF417-phonegap plugin for my Barcode Scanning Application

I am trying to create an application that reads information from a Driving license and gives the result based on that. I am using Ionic framework for my app and have integrated the PDF417- phonegap plugin by MicroBlink with my app. I followed all…
2
votes
0 answers

tcpdf generate pdf417 2D barcode can't set width

I try to generate the barcode with these requirements: Barcode Type: PDF 417 Error Correction Length: 5 Module Height/Length: 2 …
wazzup
  • 21
  • 4
2
votes
1 answer

PDF417 - iOS Web App

I'm currently looking for a way to scan and read a PDF417 barcode via mobile device camera and have the data sent back to a URL via GET (or any method). I originally implemented this on Android using the Barcode Scanner app which uses zxing -…
2
votes
0 answers

Unrecognized Barcode

I need to parse the USDL (U.S driving Licence) barcodes which is in PDF417 format. I almost got the parsing, but when parse a barcode from ohio state. It shows unrecognized barcode information. o/p-OHLOVELAND^NEAL$RAYMOND$E$^11947 FOXGATE …
SHEBIN
  • 163
  • 1
  • 10
2
votes
1 answer

How to set width of generated pdf417 barcode using java

Hi I am working on generating pdf417 barcode. For this I followed this link. try { String a = "Microsoft"; String b = "wkejew"; PDF417 barcode = new PDF417(); barcode.setData(a+b); …
chitti
  • 121
  • 1
  • 4
  • 15
2
votes
0 answers

Uncaught TypeError: Cannot read property 'email' of undefined cordova 3.6

I am working on phonegap project. I need to send email from my phonegap application. I followed this tutorial. When I run the application , I am getting the above error "Uncaught TypeError: Cannot read property 'email' of undefined" . My cordova…
chitti
  • 121
  • 1
  • 4
  • 15
2
votes
1 answer

ZXing PDF417 + ALL_CODE_TYPES

Using ZXing (on Android), if you initiate a PDF417 barcode scan like this... List oDesiredFormats = Arrays.asList("PDF_417".split(",")); IntentIntegrator integrator = new IntentIntegrator(this); integrator.initiateScan(oDesiredFormats); ...…
MindMusic
  • 23
  • 3