2

我正在尝试在 PyQt5 的 QLabel 中呈现 WSQ 图像。WSQ 图像位于 xml 文件中,该文件位于 zip 文件中。这是我的方法:

import zipfile
import xml.etree.cElementTree as ET
import base64.b64decode as b64decode
from PyQt5 import QtGui, QtWidgets
...
try:
    with zipfile.ZipFile(zfilename) as src_zip:
        root = ET.fromstring(src_zip.open(xmlfilename).read())
except zipfile.BadZipFile as e:
    root = None
finger_prints = []
if root:
    for data in root.findall('.//Demographics/FingerData'):
        finger_prints.append(b64decode(data.find('FingerprintImage').text))
...
finger_data = finger_prints.pop()
pixmap = QtGui.QPixmap()
pixmap.loadFromData(finger_data, 'WSQ') # freezes
QtWidgets.QLabel().setPixmap(pixmap)

第二行但最后一行导致程序冻结/挂起,但如果我这样做:

with file('/tmp/finger_print.wsq', 'wb') as f:
    f.write(finger_data)

我可以在 WSQ 查看器中查看图像。我了解 Qt 有用于不同图像格式的插件,是否有我缺少的图像插件?

在此先感谢您的帮助。

-亚伯拉罕。

4

1 回答 1

1

Qt 默认支持的图像格式有:

 Format  Description                            Qt's support
 BMP     Windows Bitmap                         Read/write
 GIF     Graphic Interchange Format (optional)  Read
 JPG     Joint Photographic Experts Group       Read/write
 JPEG    Joint Photographic Experts Group       Read/write
 PNG     Portable Network Graphics              Read/write
 PBM     Portable Bitmap                        Read
 PGM     Portable Graymap                       Read
 PPM     Portable Pixmap                        Read/write
 XBM     X11 Bitmap                             Read/write
 XPM     X11 Pixmap                             Read/write

因此,您要么必须编写自定义 Qt 图像插件,要么以某种方式将图像数据转换为 Qt 能够理解的格式之一。

于 2014-01-15T19:58:05.717 回答