合并PDF文件,并下载

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-16浏览:1

合并PDF文件,并下载

需要在NuGet 引入 GroupDocs.Merger


  string filePath = PathUtils.GetPhysicalPath(KeyConst.TEMPFILEPATH,fileName);//绝对地址

            string filePath2 = PathUtils.GetPhysicalPath(KeyConst.TEMPFILEPATH,fhtzfileName);

            string filePathOut = PathUtils.GetPhysicalPath(KeyConst.TEMPFILEPATH,"aaa.pdf");


          

            using (Merger merger = new Merger(filePath2))

            {

                merger.Join(filePath);

                merger.Save(filePathOut);

            }


            string _OutzipServicePath = PathUtils.GetServerPath(KeyConst.TEMPFILEPATH, "aaa");

            _OutzipServicePath += ".pdf";


           


            //下载文件

            DynamicFormShowParameter param = new DynamicFormShowParameter();

            param.FormId = "BOS_FileDownLoad";

            param.OpenStyle.ShowType = ShowType.Modal;

            param.CustomParams.Add("IsExportData", "true");

            param.CustomParams.Add("url", _OutzipServicePath);

           this.View.ShowForm(param);



请问groupdocs.merger是否支持.netframework,version=v4.0

合并PDF文件,并下载

需要在NuGet 引入 GroupDocs.Merger string filePath = PathUtils.GetPhysicalPath(KeyConst.TEMPFILEPATH,fileName);//绝对地址 ...
点击下载文档
分享:
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息