将base64值转换为条形码

问题描述 投票:0回答:1

有人知道如何从 Base64 编码值反向创建条形码吗?这是因为我无法访问真正的许可证,我只是获得了一些在扫描许可证后创建的 Base64 值的示例。

base64 barcode
1个回答
0
投票

这是将 Base64 值转换为条形码的通用方法。

Step 1. Decode the Base64 Value: You could make use of Python lib.
Step 2. Identify the Barcode Format: What type of barcode? Code 128? Code 39?
Step 3. Recreate the Barcode: You could make use of `python-barcode` to generate barcode.
© www.soinside.com 2019 - 2024. All rights reserved.