码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET指定页面转PDF、JPG(插件)

时间:2018-01-26 17:05:47      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:binary   cat   art   ons   blank   location   opd   强制   top   

 //PDF文件导出
        public ActionResult pdfs() {
            
            //导出页面的路径(死路径)
            string url = "http://localhost:1213/";
            //插件的路径(转换为pdfNE)
            string pdf = "C:/Program Files/wkhtmltopdf/bin/wkhtmltopdf.exe";

            //随机生成一个文件名称
            string filename = Guid.NewGuid().ToString();
            //pdf格式
            string pdfpath = filename + ".pdf";
            Process p = System.Diagnostics.Process.Start(pdf, url + " \"" + Server.MapPath(pdfpath) + "\"");
            p.WaitForExit();
            
            //下载
            FileStream fs = new FileStream(Server.MapPath(pdfpath), FileMode.Open);
            byte[] file = new byte[fs.Length];
            fs.Read(file, 0, file.Length);
            fs.Close();
            Response.Clear();
            Response.AddHeader("content-disposition", "attachment; filename=" + filename + ".pdf");//以二进制流模式,强制下载 
            Response.ContentType = "application/octet-stream";
            Response.BinaryWrite(file);
            Response.Write("<script>window.location=‘Index.cshtml‘</script>");
            return null;
        }
 //JPG文件导出
        public ActionResult jpgs()
        {
            //导出页面的路径
            string url = "http://localhost:1213/";
            //插件的路径(转换为jpg)
            string jpg = "C:/Program Files/wkhtmltopdf/bin/wkhtmltoimage.exe";

            //随机生成一个文件名称
            string filename = Guid.NewGuid().ToString();
            //jpg格式
            string pdfpath = filename + ".jpg";
            Process p = System.Diagnostics.Process.Start(jpg, url + " \"" + Server.MapPath(pdfpath) + "\"");
            p.WaitForExit();

            //下载
            FileStream fs = new FileStream(Server.MapPath(pdfpath), FileMode.Open);
            byte[] file = new byte[fs.Length];
            fs.Read(file, 0, file.Length);
            fs.Close();
            Response.Clear();
            Response.AddHeader("content-disposition", "attachment; filename=" + filename + ".jpg");//以二进制流模式,强制下载 
            Response.ContentType = "application/octet-stream";
            Response.BinaryWrite(file);
            Response.Write("<script>window.location=‘Index.cshtml‘</script>");
            return null;
        }
布局页面代码:
  <a>@Html.ActionLink("当前页面导出PDF", "pdfs")</a>
  <a>@Html.ActionLink("当前页面导出JPG", "jpgs")</a>

转PDF、JPG插件(wkhtmltox-0.12.4_msvc2015-win64.exe)

ASP.NET指定页面转PDF、JPG(插件)

标签:binary   cat   art   ons   blank   location   opd   强制   top   

原文地址:https://www.cnblogs.com/zhoupengbk/p/8360068.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!