我正在使用pdfkit使用python将html字符串转换为pdf。因此,我的output
变量包含html字符串,并且在其中显示如下图像:
<link href='file:\\\C:\Users\User\Desktop\templates\styles.css' rel='stylesheet' type='text\css' />
<img src="file:\\\C:\Users\User\Desktop\myImage.png" />
因此,每当我在html文件中打开它时,图像都会正确显示。但是,当我将输出字符串转换为pdf时,不会显示图像。这是我转换为pdf的方法:
config = pdfkit.configuration(wkhtmltopdf='C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltopdf.exe')
pdfkit.from_string(output, False, css='C:\\Users\\User\\Desktop\\templates\\styles.css', configuration = config)
当我打开它时,所有东西都在里面,请保留图像。另外,这是我在终端中使用pdfkit时的消息:
Loading pages (1/6)
Warning: Failed to load file:///C:/Users/user~1/AppData/Local/Temp/styles.css (ignore)
Counting pages (2/6)
Resolving links (4/6)
Loading headers and footers (5/6)
Printing pages (6/6)
Done
任何帮助都会很棒,谢谢!