C#調用WPS將文檔轉換成pdf進行預覽

最近在做預覽功能有些壓抑

vs啟動項目可以生成wps實例

本地iis部署的站點卻不行

原因是vs是管理員權限撤逢,而iis沒有權限

解決方法

啟動IIS,應用程序池-“選定的應用程序池”-高級設置-進程模型-標識:設置為管理員賬號administrator

image

代碼

1.安裝WPS 2016 專業(yè)版

2.方法一:在項目中引用etapi.dll,wpsapi.dll,wppapi.dll搀罢,在WPS的安裝目錄中,如C:\Program Files (x86)\Kingsoft\WPS Office\10.8.2.6666\office6

方法二:根據實際需要科添加下面的COM引用

原文:https://blog.csdn.net/xqf222/article/details/81237915

添加引用 -> COM -> Kingsoft Add-In Designer

添加引用 -> COM -> Microsoft Office 11.0 Object Library

添加引用 -> COM -> Upgrade WPS Office 3.0 Object Library(Beta)

添加引用 -> COM -> Upgrade WPS Presentation 3.0 Object Library(Beta)

添加引用 -> COM -> Upgrade Kingsoft WPS 3.0 Object Library(Beta)

添加引用 -> COM -> Kingsoft WPS Extend Apo 1.0 Object Library(Beta)


public class ToPdfHelper : IDisposable

    {

        dynamic wps;

        public ToPdfHelper(string typeName)

        {

            if (typeName == "xls")

                typeName = "KET.Application";

            else if (typeName == "ppt")

                typeName = "KWPP.Application";

            else

                typeName = "KWps.Application";

            //創(chuàng)建wps實例侥猩,需提前安裝wps

            Type type = Type.GetTypeFromProgID(typeName);

            if (type == null)

                type = Type.GetTypeFromProgID("wps.Application");

            wps = Activator.CreateInstance(type);

        }

        /// <summary>

        /// 使用wps將Word轉PDF

        /// </summary>

        /// <param name="saveUrl">文件路徑</param>

        /// <param name="targetPath">源文件路徑</param>

        /// <returns></returns>

        public string WordWpsToPdf(string saveUrl, string targetPath)

        {

            if (targetPath == null)

            {

                throw new ArgumentNullException("wpsFilename");

            }

            var wordPath = saveUrl + targetPath;

            var pdfPath = Path.ChangeExtension(wordPath, "pdf");

            try

            {

                //用wps 打開word不顯示界面

                dynamic doc = wps.Documents.Open(wordPath, Visible: false);

                //doc 轉pdf

                doc.ExportAsFixedFormat(pdfPath, WdExportFormat.wdExportFormatPDF);

                //設置隱藏菜單欄和工具欄

                //wps.setViewerPreferences(PdfWriter.HideMenubar | PdfWriter.HideToolbar);

                doc.Close();

                doc = null;

            }

            catch (Exception e)

            {

                targetPath = GetEXCELtoPDF.CreatePDFs(saveUrl, targetPath);

            }

            finally

            {

                Dispose();

            }

            return Path.ChangeExtension(targetPath, "pdf");

        }

        /// <summary>

        /// 使用wps將xls轉PDF

        /// </summary>

        /// <param name="saveUrl">文件路徑</param>

        /// <param name="targetPath">源文件路徑</param>

        /// <returns></returns>

        public string XlsWpsToPdf(string saveUrl, string targetPath)

        {

            if (targetPath == null)

            {

                throw new ArgumentNullException("wpsFilename");

            }

            var wordPath = saveUrl + targetPath;

            var pdfPath = Path.ChangeExtension(wordPath, "pdf");

            try

            {

                XlFixedFormatType targetType = XlFixedFormatType.xlTypePDF;

                object missing = Type.Missing;

                //xls 轉pdf

                dynamic doc = wps.Application.Workbooks.Open(wordPath, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing);

                doc.ExportAsFixedFormat(targetType, pdfPath, XlFixedFormatQuality.xlQualityStandard, true, false, missing, missing, missing, missing);

                //設置隱藏菜單欄和工具欄

                //wps.setViewerPreferences(PdfWriter.HideMenubar | PdfWriter.HideToolbar);

                doc.Close();

                doc = null;

            }

            catch (Exception e)

            {

                targetPath = GetEXCELtoPDF.CreatePDFs(saveUrl, targetPath);

            }

            finally

            {

                Dispose();

            }

            return Path.ChangeExtension(targetPath, "pdf");

        }

        /// <summary>

        /// 使用ppt將xls轉PDF

        /// </summary>

        /// <param name="saveUrl">文件路徑</param>

        /// <param name="targetPath">源文件路徑</param>

        /// <returns></returns>

        public string PptWpsToPdf(string saveUrl, string targetPath)

        {

            if (targetPath == null)

            {

                throw new ArgumentNullException("wpsFilename");

            }

            var wordPath = saveUrl + targetPath;

            var pdfPath = Path.ChangeExtension(wordPath, "pdf");

            try

            {

                //ppt 轉pdf

                dynamic doc = wps.Presentations.Open(wordPath, MsoTriState.msoCTrue,

                    MsoTriState.msoCTrue, MsoTriState.msoCTrue);

                object missing = Type.Missing;

                //doc.ExportAsFixedFormat(pdfPath, PpFixedFormatType.ppFixedFormatTypePDF,

                //    PpFixedFormatIntent.ppFixedFormatIntentPrint,

                //    MsoTriState.msoCTrue, PpPrintHandoutOrder.ppPrintHandoutHorizontalFirst,

                //    PpPrintOutputType.ppPrintOutputBuildSlides,

                //      MsoTriState.msoCTrue, null, PpPrintRangeType.ppPrintAll,"",

                //      false, false, false, false, false, missing);

                doc.SaveAs(pdfPath, PpSaveAsFileType.ppSaveAsPDF, MsoTriState.msoTrue);

                //設置隱藏菜單欄和工具欄

                //wps.setViewerPreferences(PdfWriter.HideMenubar | PdfWriter.HideToolbar);

                doc.Close();

                doc = null;

            }

            catch (Exception e)

            {

                targetPath = GetEXCELtoPDF.CreatePDFs(saveUrl, targetPath);

            }

            finally

            {

                Dispose();

            }

            return Path.ChangeExtension(targetPath, "pdf");

        }

        public void Dispose()

        {

            if (wps != null) { wps.Quit(); wps = null; }

        }

    }

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末榔至,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子拭宁,更是在濱河造成了極大的恐慌洛退,老刑警劉巖瓣俯,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件杰标,死亡現場離奇詭異,居然都是意外死亡彩匕,警方通過查閱死者的電腦和手機腔剂,發(fā)現死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來驼仪,“玉大人掸犬,你說我怎么就攤上這事⌒靼郑” “怎么了湾碎?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長奠货。 經常有香客問我介褥,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任柔滔,我火速辦了婚禮溢陪,結果婚禮上,老公的妹妹穿的比我還像新娘睛廊。我一直安慰自己形真,他們只是感情好,可當我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布超全。 她就那樣靜靜地躺著咆霜,像睡著了一般。 火紅的嫁衣襯著肌膚如雪嘶朱。 梳的紋絲不亂的頭發(fā)上裕便,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機與錄音见咒,去河邊找鬼偿衰。 笑死,一個胖子當著我的面吹牛改览,可吹牛的內容都是我干的下翎。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼宝当,長吁一口氣:“原來是場噩夢啊……” “哼视事!你這毒婦竟也來了?” 一聲冷哼從身側響起庆揩,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤俐东,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后订晌,有當地人在樹林里發(fā)現了一具尸體虏辫,經...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年锈拨,在試婚紗的時候發(fā)現自己被綠了砌庄。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡奕枢,死狀恐怖娄昆,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情缝彬,我是刑警寧澤萌焰,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站谷浅,受9級特大地震影響扒俯,放射性物質發(fā)生泄漏族购。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一陵珍、第九天 我趴在偏房一處隱蔽的房頂上張望寝杖。 院中可真熱鬧,春花似錦互纯、人聲如沸瑟幕。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽只盹。三九已至,卻和暖如春兔院,著一層夾襖步出監(jiān)牢的瞬間殖卑,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工坊萝, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留孵稽,地道東北人。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓十偶,卻偏偏與公主長得像菩鲜,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子惦积,可洞房花燭夜當晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內容