2011-06-14 57 views
2

我使用gfx將PDF中的特定頁面轉換爲.png圖像,但創建的圖像質量很差。我需要使用gfx,並且不能使用任何其他模塊。使用的代碼是:gfx從pdf創建質量差的圖像

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) 

回答