我正在使用EO.Pdf将html文本转换为pdf,我想对其应用密码保护,不应在没有密码的情况下打开pdf文件。 如果我使用PDFDocument对象,则EO.Pdf提供了选项,其中我可以使用以下代码将.UserPassword传递给它的对象,它可以正常工作。 PdfDocumentSecurity security =新的PdfDocumentSecurity(“ 1234”);
PdfDocument doc = new PdfDocument(inputFileName, security);
//Set a new password "5678"
doc.Security.UserPassword = "5678";
但是如果我使用以下内容,因为我必须将html转换为pdf,
EO.Pdf.HtmlToPdf.ConvertHtml(download, pdfName,options);
即使我将用户名和密码传递给上述参数“ options”,它也不起作用。有人有解决方案吗?