Reportlab pdf上的Appengine图片

时间:2018-07-17 02:38:40

标签: python-2.7 app-engine-ndb reportlab

Python 2.7,Google App Engine,ndb.Model

我将.jpg图片存储为

signblobkey      = ndb.BlobKeyProperty(verbose_name='Signature')

这些可以完美地存储和显示在html页面中。但是,我不知道如何使用reportlab在.pdf中“打印”这些内容。

我当前的代码是:

blobattach = ''
blobname   = ''
blobmime   = 'None'
if self.filetext.signblobkey != None:
    blob_info  = blobstore.BlobInfo.get(self.filetext.signblobkey)
blobmime   = blob_info.content_type[:5]
blobname   = blob_info.filename
if blobmime == 'image':
    blobattach = get_serving_url(self.filetext.signblobkey)          

canvas.ImageReader(StringIO.StringIO(self.filetext.signblobkey))
self.p.drawImage(image=blobattach,
                 x=self.colleft, 
                 y=c_lineprint - (4 * self.lineheight), 
                 width=self.colright - self.colleft, 
                 height=4 * self.lineheight, 
                 mask=None, 
                 preserveAspectRatio=True, 
                 anchor='nw')

我显然在这里丢失了一些东西,我似乎没有访问实际的图像。有什么线索吗?

谢谢, 大卫

2 个答案:

答案 0 :(得分:1)

感谢上述回答,使我朝着正确的方向前进。万一有人需要帮助,我终于...

from reportlab.lib.utils import ImageReader

# note self.filetext is a ndb.Model with .signblobkey pointing to my signature
self.signature = None
if self.filetext.signblobkey != None:
    blob_info  = blobstore.BlobInfo.get(self.filetext.signblobkey)
    blobmime   = blob_info.content_type[:5]
    blobname   = blob_info.filename
    if blobmime == 'image':
        blobattach     = get_serving_url(self.filetext.signblobkey)  
        self.signature = ImageReader(blobattach)

# in the printing routine (I will print a few thousand pages, each with a signature
if self.signature:
    self.p.drawImage(image=self.signature, 
                     x=self.colleft, 
                     y=c_lineprint - (4 * self.lineheight), 
                     width=self.colright - self.colleft, 
                     height=4 * self.lineheight, 
                     mask=None, 
                     preserveAspectRatio=True, 
                     anchor='nw')

答案 1 :(得分:0)

好吧,您作为image传递给self.p.drawImage的只是blobattach,它充其量只是一个URL。您可能需要将图像传递给它。

您可以尝试将URL传递给ImageReader(显然知道如何利用URL),然后将结果用作图像。您当前传递给ImageReader的不是URL。我不太清楚这是什么-我怀疑StringIO(或ImageReader)知道如何使用Blob键(您的self.filetext.signblobkey)。

或者您可以尝试直接从self.filetext.signblobkey的blobstore中读取图像。这些做法(您需要使用blobstore API正确解释blob键):

with blobstore.BlobReader(self.filetext.signblobkey) as fd:
     blob_content = fd.read()

不知道它是如何工作的,例如,我还没有玩图像。