bred

Generation

generate functionThu, 19 Jan 2023

lấy mã qr code rồi dịch sang loại string

from pyzbar import pyzbar from PIL import Image def decode(im): decodedObjects = pyzbar.decode(im) for obj in decodedObjects: return obj.data im = Image.open('img.png') decode(im)

Want to kickstart your project?Use the new AI Studio to create your code