1

我的 django 应用程序正在使用多帧 reportlab pdf 报告,我想添加一些条形码/二维码。

我遇到的问题是我添加到布局中的每个对象都必须是 Flowable。所以问题是将 PlotArea(QrCodeWidget 的母类)转换为 Flowable。

如果我们在这里有答案,如果我们将 QrCodeWidget 添加为

AttributeError: QrCodeWidget instance has no attribute 'getKeepWithNext'
4

2 回答 2

6

好的,我制作了自己的 Flowable,它比我教的要简单。

就像在画布上使用这个 API 一样简单。

from reportlab.platypus import Flowable
from reportlab.graphics.barcode import qr
from reportlab.graphics import renderPDF
from reportlab.graphics.shapes import Drawing

class QRFlowable(Flowable):
    # usage : 
    # story.append(QRFlowable("http://google.fr"))
    def __init__(self, qr_value):
        # init and store rendering value
        Flowable.__init__(self)
        self.qr_value = qr_value

    def wrap(self, availWidth, availHeight):
        # optionnal, here I ask for the biggest square available
        self.width = self.height = min(availWidth, availHeight)
        return self.width, self.height

    def draw(self):
        # here standard and documented QrCodeWidget usage on
        # Flowable canva
        qr_code = qr.QrCodeWidget(self.qr_value)
        bounds = qr_code.getBounds()
        qr_width = bounds[2] - bounds[0]
        qr_height = bounds[3] - bounds[1]
        w = float(self.width)
        d = Drawing(w, w, transform=[w/qr_width, 0, 0, w/qr_height, 0, 0])
        d.add(qr_code)
        renderPDF.draw(d, self.canv, 0, 0)
于 2013-09-10T08:48:11.683 回答
0

您应该从您的图像生成图像QrCodeWidget并将其包含在Image可流动的文件中。

于 2013-09-02T16:27:25.893 回答