3

我在 Windows 7 中安装了 pybarcode0.6 lib。安装后,我编写了以下代码来为我的模块生成条形码:

import barcode
from barcode.writer import ImageWriter
import base64
EAN = barcode.get_barcode_class('code39')
ean = EAN(barcode_string, writer=ImageWriter())
fullname = ean.save('code39_barcode')
name = open(fullname, "r+")
barcode_data = base64.b64encode(name.read())

但是,当我尝试运行代码时,出现以下错误:

The _imagingft C module is not installed

当我用谷歌搜索时,我能够找到这个问题。根据给出的解决方案,我已经安装了 PIL lib,但我仍然面临同样的错误。

任何人都可以对此有所了解吗?

4

0 回答 0