将docx转换为pdf
本文关键字:pdf 转换 docx | 更新日期: 2023-09-27 18:03:26
我的文档存储在数据库中,我想发送带有附件的邮件。
我想将存储的docx转换为pdf。
var result = from c in valinor.documents
select new
{
c.document_name,
c.document_size,
c.document_content
};
var kk = result.ToList();
for (int i = 0; i<kk.Count; i++)
{
MemoryStream stream = new MemoryStream(kk[i].document_content);
Attachment attachment = new Attachment(stream, kk[i].document_name + ".pdf", "application/pdf");
mail.Attachments.Add(attachment);
}
如何将document_content
转换为pdf?
您需要在MIcrosoft office dll中使用Microsoft.Office.Interop.Word
。
- 添加参考到您的项目
Microsoft.Office.Interop.Word
查看我的代码样本。
这很好,很容易,100%的工作对我来说。
Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
wordDocument = word.Documents.Open(savedFileName, ReadOnly: true);
wordDocument.ExportAsFixedFormat(attahcmentPath + "/pdf" + attachment.BetAttachmentCode + ".pdf", Microsoft.Office.Interop.Word.WdExportFormat.wdExportFormatPDF);
word.Quit(false);
您需要在机器上安装第三方组件,如ABCpdf和(可能)Word,并使用该组件从docx转换为pdf。