python-3.4 - 移植到Python3 : PyPDF2 mergePage() gives TypeError

标签 python-3.4 porting reportlab pypdf

我在 Windows 7 上使用 Python 3.4.2 和 PyPDF2 1.24(还使用 reportlab 3.1.44,以防有帮助)。

我最近从 Python 2.7 升级到 3.4,并且正在移植我的代码。此代码用于创建一个空白 pdf 页面,其中嵌入了链接(使用 reportlab)并将其与现有 pdf 页面合并(使用 PyPDF2)。我在使用 Reportlab 时遇到了一个问题,因为保存 Canvas 时使用了 StringIO,需要将其更改为 BytesIO,但在执行此操作后,我遇到了此错误:

Traceback (most recent call last):
File "C:\cms_software\pdf_replica\builder.py", line 401, in merge_pdf_files
    input_page.mergePage(link_page)
File "C:\Python34\lib\site-packages\PyPDF2\pdf.py", line 2013, in mergePage
    self.mergePage(page2)
File "C:\Python34\lib\site-packages\PyPDF2\pdf.py", line 2059, in mergePage
    page2Content = PageObject._pushPopGS(page2Content, self.pdf)
File "C:\Python34\lib\site-packages\PyPDF2\pdf.py", line 1973, in _pushPopGS
    stream = ContentStream(contents, pdf)
File "C:\Python34\lib\site-packages\PyPDF2\pdf.py", line 2446, in __init
    stream = BytesIO(b_(stream.getData()))
File "C:\Python34\lib\site-packages\PyPDF2\generic.py", line 826, in getData
    decoded._data = filters.decodeStreamData(self)
File "C:\Python34\lib\site-packages\PyPDF2\filters.py", line 326, in decodeStreamData
    data = ASCII85Decode.decode(data)
File "C:\Python34\lib\site-packages\PyPDF2\filters.py", line 264, in decode
    data = [y for y in data if not (y in ' \n\r\t')]
File "C:\Python34\lib\site-packages\PyPDF2\filters.py", line 264, in 
    data = [y for y in data if not (y in ' \n\r\t')]
TypeError: 'in <string>' requires string as left operand, not int

这是回溯提到的行和上面的行:

link_page = self.make_pdf_link_page(pdf, size, margin, scale_factor, debug_article_links)
if link_page != None:
input_page.mergePage(link_page)

以下是 make_pdf_link_page 函数的相关部分:

packet = io.BytesIO()
can = canvas.Canvas(packet, pagesize=(size['width'], size['height']))
....# left out code here is just reportlab specifics for size and url stuff
can.linkURL(url, r1, thickness=1, color=colors.green)
can.rect(x1, y1, width, height, stroke=1, fill=0)
# create a new PDF with Reportlab that has the url link embedded
can.save()
packet.seek(0)
try:
    new_pdf = PdfFileReader(packet)
except Exception as e:
    logger.exception('e')
    return None
return new_pdf.getPage(0)

我假设这是使用 BytesIO 的问题,但我无法使用带有 StringIO 的 reportlab 创建页面。这是一个关键功能,过去可以与 Python 2.7 完美配合,因此我非常感谢对此的任何反馈。谢谢!

更新: 我还尝试从使用 BytesIO 更改为仅写入临时文件,然后合并。不幸的是我遇到了同样的错误。 这是临时文件版本:

import tempfile
temp_dir = tempfile.gettempdir()
temp_path = os.path.join(temp_dir, "tmp.pdf")
can = canvas.Canvas(temp_path, pagesize=(size['width'], size['height']))
....
can.showPage()
can.save()
try:
    new_pdf = PdfFileReader(temp_path)
except Exception as e:
    logger.exception('e')
    return None
return new_pdf.getPage(0)

更新: 我发现了一些有趣的信息。看来如果我注释掉 can.rect 和 can.linkURL 调用它就会合并。因此,在页面上绘制任何内容,然后尝试将其与我现有的 pdf 合并会导致错误。

最佳答案

深入研究 PyPDF2 库代码后,我找到了自己的答案。对于 python 3 用户来说,旧的库可能会很棘手。即使他们说他们支持 python 3,他们也不一定测试所有内容。在本例中,问题出在 PyPDF2 中的filters.py 中的 ASCII85Decode 类。对于 python 3,此类需要返回字节。我从 pdfminer3k 借用了相同类型函数的代码,pdfminer3k 是 pdfminer 的 python 3 的端口。如果您将 ASCII85Decode() 类替换为此代码,它将起作用:

import struct
class ASCII85Decode(object):
    def decode(data, decodeParms=None):
        if isinstance(data, str):
            data = data.encode('ascii')
        n = b = 0
        out = bytearray()
        for c in data:
            if ord('!') <= c and c <= ord('u'):
                n += 1
                b = b*85+(c-33)
                if n == 5:
                    out += struct.pack(b'>L',b)
                    n = b = 0
            elif c == ord('z'):
                assert n == 0
                out += b'\0\0\0\0'
            elif c == ord('~'):
                if n:
                    for _ in range(5-n):
                        b = b*85+84
                    out += struct.pack(b'>L',b)[:n-1]
                break
        return bytes(out)

关于python-3.4 - 移植到Python3 : PyPDF2 mergePage() gives TypeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27974409/

相关文章:

python - 更好的素数算法

drupal - 从Drupal 6升级到Drupal 7:最佳程序员实践?

c++ - Solaris 中的 SH_DENY* 等价物

python - Reportlab new line in a long line

python - Reportlab 条形图条形标签标注

Python open() 需要完整路径

python-3.4 - 名称错误 - 名称 api 未定义

python - 如何从值字典构造 enum.Enum ?

ios - 在 NSView 之上实现 UIView,以便从 iOS 移植到 Mac OSX

python - ReportLab:如何对齐文本对象?