2

我正在使用 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)
4

2 回答 2

0

您可以使用swfrender

于 2011-08-11T19:10:32.987 回答
0

添加这个 gfx.setparameter("zoom", "400")

您可以在http://wiki.swftools.org/wiki/Python_gfx_tutorial了解更多信息

于 2013-08-10T03:32:31.320 回答