Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help with QR Code
#1
hey, how can we read qr codes in 1st page from a pdf file
and verify the same qr code is present in all the other pages of the file
tia
Reply
#2
there are packages available for reading and displaying qr-codes.
see: PyPi Search Results
Scanner code for PDF
Reply
#3
The QR codes I made were made with the module qrcode.

They are .png images

To read the info contained, you can use cv2 (which gives computers eyes!):

import cv2
from pyzbar import pyzbar as pzb

qr = '/home/pedro/summer2023/OMR/21BE/21BE_QRcodes/21BE1/2125010102_曹宇_QR.png'

image = cv2.imread(qr)
decodedObjects = pzb.decode(image)
for obj in decodedObjects:
    print("Type:", obj.type)    
    print("Data: ", obj.data, "\n")
    # this is the content of the QR code as a string
    string=obj.data.decode('utf-8')
    print(f'The information in this QR code is: {string}') 
How to get an image from a PDF? Ask another question here, or look on the web!
Reply
#4
Also you could perhaps start by extracting the images from the pdf document. For example in Linux this can be done with the 'pdfimages' command that comes with the 'poppler' library.
« We can solve any problem by introducing an extra level of indirection »
Reply
#5
You can use Python with PyPDF2 and pyzbar for this. Just scan the QR code on the first page, then loop through the other pages to check if their QR codes match.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020