我的文档存储在我想要发送带附件的邮件的数据库中。
我想将存储的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?
答案 0 :(得分:1)
您需要在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);
答案 1 :(得分:0)
您需要在机器上安装ABCpdf和(可能)Word等第三方组件,并使用该组件从docx转换为pdf。