web-dev-qa-db-ja.com

C#で.docxを.pdfに変換する方法

現在、OpenXMLを使用してデータベースからデータを読み取り、ドキュメントを生成しています。しかし、最後の要件はPDFであることです。だから私はC#で.docxをpdfに変換する方法を知りたいです。誰か助けてくれませんか?または、いくつかの情報を提供します。

13
Robin Sun

このリンクで解決策を確認できます: http://www.codeproject.com/Questions/346784/How-to-convert-Word-document-to-pdf-in-Csharp

私は最初にソリューション間でこれを使用することをお勧めします:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Microsoft.Office.Interop.Word;

public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Microsoft.Office.Interop.Word.Application appWord = new Microsoft.Office.Interop.Word.Application();
        wordDocument = appWord.Documents.Open(@"D:\desktop\xxxxxx.docx");
        wordDocument.ExportAsFixedFormat(@"D:\desktop\DocTo.pdf", WdExportFormat.wdExportFormatPDF);
    }

    public Microsoft.Office.Interop.Word.Document wordDocument { get; set; }
}
10
Demir