• 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。

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

  • 相关阅读:
    speechSynthesis 离线语音合成 浏览器自动播报
    提问的智慧
    实用工具
    《大数据时代》——思维导图
    数据分析技能提升十大建议
    vue根据权限生成动态路由及导航菜单
    vue中实现JavaScript桌面消息通知(push.js)
    vue中如何封装axios及如何使用
    启用多个服务器的webpack配置
    移动端input获取焦点弹出输入框时影响fixed布局的问题
  • 原文地址:https://www.cnblogs.com/liguix/p/10955555.html
Copyright © 2020-2023  润新知