c#通过libreOffice实现 office文件转pdf文件

一.安装libreOffice

点击官网下载libreOffice

二.创建一个新的项目LibreOffice

创建一个新的项目,方便后面调用

添加下面代码

 public class OfficeConvert
    {
        static string getLibreOfficePath()
        {
            switch (Environment.OSVersion.Platform)
            {
                case PlatformID.Unix:
                    return "/usr/bin/soffice";
                case PlatformID.Win32NT:
                    string binaryDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
                    return binaryDirectory + "\Windows\program\soffice.exe";
                default:
                    throw new PlatformNotSupportedException("你的系统暂不支持!");
            }
        }

        public static void ToPdf(string officePath, string outPutPath)
        {
            //获取libreoffice命令的路径
            string libreOfficePath = getLibreOfficePath();
            
            ProcessStartInfo procStartInfo = new ProcessStartInfo(libreOfficePath, string.Format("--convert-to pdf --outdir {0} --nologo {1}", outPutPath, officePath));
            procStartInfo.RedirectStandardOutput = true;                                          
            procStartInfo.UseShellExecute = false;
            procStartInfo.CreateNoWindow = true;
            procStartInfo.WorkingDirectory = Environment.CurrentDirectory;

            //开启线程
            Process process = new Process() { StartInfo = procStartInfo, };
            process.Start();
            process.WaitForExit();

            if (process.ExitCode != 0)
            {
                throw new LibreOfficeFailedException(process.ExitCode);
            }
        }
    }

    public class LibreOfficeFailedException : Exception
    {
        public LibreOfficeFailedException(int exitCode)
            : base(string.Format("LibreOffice错误 {0}", exitCode))
        { }
    }

 三.将libreOffice的安装文件复制到自己项目host下面的如下路径

 

本操作主要是通过调用libreOffice的命令行方法,将office转化为pdf

四、当将程序发布到iis时,需要将应用程序池中的高级设置设置为true。

这个问题坑了我一个星期,如果不设置,进程会一直运行,不退出。

原文地址:https://www.cnblogs.com/liguix/p/10955555.html