Google アプリ エンジン データベースから画像を取得する PDF を生成したいと考えています。
#Example. This works perfectly fine in the resulting doc
story.append(Image('http://www.python.org/community/logos/python-logo.png'))
#Im omitting the details heres, but photo object is correctly created
photo = ImageReader()
story.append(photo)
#Gives me the error:
#AttributeError: 'ImageReader' object has no attribute 'getKeepWithNext'
#I thought it might had to cast to an Image object, so i tried:
story.append(Image(photo))
#It gives me the error:
#AttributeError: 'ImageReader' object has no attribute 'rfind'
#The error points out to the line where I try to build the doc with the story
doc = SimpleDocTemplate(stream, pagesize=portrait(A4), etc.)
doc.build(story)
キャンバスから画像を追加することを含むいくつかのソリューションを見てきました。非常に不便な原因ですが、ストーリーに要素を追加してからドキュメントを作成したいので、試してみました。そして、それはまだ機能しません。
これを達成した人はいますか?つまり、Google App Engine の画像と reportlab とカモノハシを動的に使用します。
前もって感謝します!!!