gpt4 book ai didi

powershell - 如何将图像添加到使用 Nreco PdfGenrator 创建的 PDF

转载 作者:行者123 更新时间:2023-12-03 16:31:52 32 4
gpt4 key购买 nike

我正在使用 Nreco PDFGenerator使用以下 PowerShell 脚本生成 PDF:

$PdfGenerator = "$((Get-Location).Path)\lib\NReco.PdfGenerator.dll"
$Assembly = [Reflection.Assembly]::LoadFrom($PdfGenerator)
$PdfCreator = New-Object NReco.PdfGenerator.HtmlToPdfConverter

$PdfCreator.PageHeight = 297
$PdfCreator.PageWidth = 210
$PdfCreator.Zoom = 2
$pdfBytes = $PdfCreator.GeneratePdf([string](gc myhtml.htm))
Add-Content -Value $pdfBytes -Encoding byte -Path "./mypdf.pdf"

myhtml.htm 是一个简单的 HTML 文档:

<html>
<head>
<title>Hello World</title>
<body>
<img src='./img/FancyImage.jpg' alt='Fancy Image' />
</body>
</html>

一切看起来都很好,只是图像丢失了......

欢迎提出任何想法!

最佳答案

显然,项目网站/常见问题解答中的答案是正确的:

It is possible to include images by specifying their FULL URL or path (if they're on local filesystem). External CSS and javascript files are also supported.

关于powershell - 如何将图像添加到使用 Nreco PdfGenrator 创建的 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27450175/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com