使用ReportLab

时间:2016-04-11 18:15:08

标签: python pdf png reportlab

我正在尝试使用ReportLab在Python中创建PDF。我需要调整PNG图像的大小以正确适合页面。当我调整图像大小时,在Microsoft照片中查看或拖放到word文档时它们看起来很好,但是当它们放入PDF时它们非常模糊。

This is the scaled image看起来很清晰。

This is a screen grab of the pdf看似模糊。

这是我目前使用的代码

def resizeImage():
    basewidth = 500
    img = PIL.Image.open('test.png')
    wpercent = (basewidth/float(img.size[0]))
    hsize = int((float(img.size[1])*float(wpercent)))
    img = img.resize((basewidth,hsize), PIL.Image.ANTIALIAS)
    img.save('sompic.png')

def generatePDF():
    c = canvas.Canvas('template.pdf', pagesize=portrait(letter))
    #Header text
    c.setFont('Helvetica', 48, leading=None)
    c.drawCentredString(200, 300, "This is a pdf" )
    test = 'sompic.png'
    c.drawImage(test, 50,350, width=None, height=None)
    c.showPage()
    c.save()

resizeImage()
generatePDF()

如果有人对如何获得清晰的图像有任何建议,我们将不胜感激!

调整大小代码来自此处:How do I resize an image using PIL and maintain its aspect ratio?

1 个答案:

答案 0 :(得分:0)

如果有人偶然发现这一点,我最终选择的路线是使用Python和LaTex的混合物,因为Latex可以很好地处理PDF和图像,从而产生干净,清晰的图像。