2

PythonとGoogleアプリエンジンを使用して、2つのpdfをpyPdfライブラリとマージしようとしています。ブロブストアからファイルを読み取り、必要な情報を使用して PdfFileWriter オブジェクトを作成しますが、この PdfFileWriter をブロブストア ファイルに変換するのに問題があります。それを解決するためのアイデアはありますか?ありがとうございました :)

これが私のコードです:

blob_reader1 = blobstore.BlobReader(blob_key1)
blob_reader2 = blobstore.BlobReader(blob_key2)

writer = PdfFileWriter()

input1 = PdfFileReader(blob_reader1)
input2 = PdfFileReader(blob_reader2)

writer.addPage(input1.getPage(0))
writer.addPage(input1.getPage(1))
writer.addPage(input2.getPage(0))


# finally, write "output" to document-output.pdf
# This lines are comment because it is the way to do it without google app engine---
# outputStream = file("document-output.pdf", "wb")
# output.write(outputStream)
# outputStream.close()
#        
# Open the file and write to it
#I do not how write the information are inside writer in blobstore file
file_name = files.blobstore.create(mime_type='application/pdf')    
#with files.open(file_name, 'a') as f:
#    f.write(writer) it does not work

# Finalize the file. Do this before attempting to read it.
files.finalize(file_name)

blob_key = files.blobstore.get_blob_key(file_name)
4

1 に答える 1

2

データを文字列バッファに出力してから、バッファをblobファイルに書き込もうとする場合があります。

import StringIO

stream = StringIO.StringIO()
writer.write( stream )    # write PDF content

# Open the file and write to it
with files.open(file_name, 'a') as f:
    f.write( stream.getvalue() )

次に、ファイナライズして通常の作業を行います。

于 2012-11-08T11:02:52.517 に答える