gfx从pdf创建质量差的图像

时间:2011-06-14 15:02:24

标签: python image pdf gfx

我正在使用gfx将pdf中的特定页面转换为.png图像,但创建的图像质量非常差。我需要使用gfx,不能使用任何其他模块。使用的代码是:

import gfx
pdf_loc=”C:\new.pdf”
pagenumber=12
doc = gfx.open('pdf',pdf_loc)
page = doc.getPage(page_number)
img = gfx.ImageList()
img.setparameter("antialise", "1") # turn on antialising
img.startpage(page.width,page.height)
page.render(img)
img.endpage()
input_loc="C:\newimg.png"
img.save(input_loc)

2 个答案:

答案 0 :(得分:0)

您可以使用swfrender

答案 1 :(得分:0)

添加此内容 gfx.setparameter(“zoom”,“400”)

您可以在http://wiki.swftools.org/wiki/Python_gfx_tutorial

上了解详情