1
我想知道是否有人可以指導如何使用xhtml2pdf替換其實際html鏈接的超鏈接。所以,如果我不得不在PDF中的超鏈接,我創建,上面寫着:使用xhtml2pdf,用實際鏈接替換超鏈接
<http://www.google.com>
這是目前簡單的功能,我使用:
import os
import sys
import cgi
import cStringIO
import logging
import xhtml2pdf.pisa as pisa
pisa.showLogging()
def testSimple(
data = open('FILENAME').read(),
dest="test.pdf":
pdf = pisa.CreatePDF(
cStringIO.StringIO(data),
file(dest, "wb")
)
if pdf.err:
dumpErrors(pdf)
else:
pisa.startViewer(dest)
testSimple()
這個工作!但是,我想知道是否有一種方法只顯示某些標籤。這可以粘貼在一個特定的標籤CSS元素? – user1463925
你究竟是什麼意思?不適用於所有鏈接?您可以使用xhtmltopdf支持的更具體的CSS選擇器。我在鏈接標籤上添加了一個簡單的'class'的例子。 – pixelistik