0
我想使用python reportlab生成pdf文件,但似乎圖像在pdf中以奇怪的黑色邊框顯示。python:reportlab,如何從圖像中刪除黑色邊框
下面是代碼:
# Standalone script to generate pdf lessons
from reportlab.pdfgen import canvas
def hello(c):
c.drawImage("./media/files/1.png", 0, 600, 350, 350)
c = canvas.Canvas("hello.pdf")
hello(c)
c.showPage()
c.save()
我想補充的圖像在這裏
有人可以諮詢爲什麼左邊的黑線出現,以及如何解決它?
什麼黑線?你可以發佈PDF的截圖嗎? – 2011-03-20 18:54:57