欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET Core中快速构建PDF文档的步骤分享第2/2页

程序员文章站 2022-03-21 12:44:36
  比如我们需要asp.net core 中需要通过pdf来进行某些简单的报表开发,随着这并不难,但还是会手忙脚乱的去搜索一些资料,那么恭喜您,这篇帖子会帮助到您,我们就不会再去浪费一...

  比如我们需要asp.net core 中需要通过pdf来进行某些简单的报表开发,随着这并不难,但还是会手忙脚乱的去搜索一些资料,那么恭喜您,这篇帖子会帮助到您,我们就不会再去浪费一些宝贵的时间。

  在本文中我们将要使用dinktopdf来处理我们在.net core web 程序中进行构建pdf文档!就现在我们不多说,直接开始有趣的部分。

前言#

  您可以通过创建pdf文档在我的仓库中,获取源代码,欢迎给个免费的star...

  现在我们创建一个.net core 3.0 项目,至于是mvc、api、这些我并不在意。创建项目后直接nuget安装dinktopdf。随后您需要下载我的代码仓库中的“nativelibrary”文件夹,在其中,我们将找到两个文件32bit和64bit,因此我们需要为操作系统选择合适的库。我们将从64位文件夹中选择文件。

  最后,我们需要启动该库,并且ioc dinktopdf。

public void configureservices(iservicecollection services)
  {
   var context = new customassemblyloadcontext();
   context.loadunmanagedlibrary(path.combine(directory.getcurrentdirectory(), "libwkhtmltox.dll"));

   services.addsingleton(typeof(iconverter), new synchronizedconverter(new pdftools()));
   services.addcontrollers();
  }

建立实体#

在真实情况的项目中,我们可以从数据库中收集数据或从其他api接收数据。但是为了简单起见,我们将从本地存储中收集pdf文档的数据。随后,我们将创建一个html模板并将其存储在pdf文档中。

public class employee
 {
  public string name { get; set; }
  public string lastname { get; set; }
  public int age { get; set; }
  public string gender { get; set; }
 }

再随后,我们要创建一个新的文件夹services和里面两类文件 dataservices.cs 和 templategenerator.cs 。完整的结构应如下所示:

public class dataservices
 {
  public static list<employee> getallemployess() =>
   new list<employee>
   {
    new employee { name="hao zi zhang", lastname="turner", age=35, gender="male"},
    new employee { name="yu chen", lastname="markus", age=22, gender="female"},
    new employee { name="jian zhi chu", lastname="martins", age=40, gender="male"},
    new employee { name="elderjames", lastname="packner", age=30, gender="female"},
    new employee { name="blazui", lastname="doe", age=45, gender="male"}
   };
 }

其中添加服务中返回了某些数据,用于模拟服务。我们要生成一个html模板,因此我们需要修改 templategenerator.cs 文件:

public class templegenertor
 {
  public static string gethtmlstring()
  {
   var employees = dataservices.getallemployess();

   var sb = new stringbuilder();
   sb.append(@"
      <html>
       <head>
       </head>
       <body>
        <div class='header'><h1>this is the generated pdf report!!!</h1></div>
        <table align='center'>
         <tr>
          <th>name</th>
          <th>lastname</th>
          <th>age</th>
          <th>gender</th>
         </tr>");

   foreach (var emp in employees)
   {
    sb.appendformat(@"<tr>
         <td>{0}</td>
         <td>{1}</td>
         <td>{2}</td>
         <td>{3}</td>
         </tr>", emp.name, emp.lastname, emp.age, emp.gender);
   }
   sb.append(@"
        </table>
       </body>
      </html>");

   return sb.tostring();
  }
 }

如果想要指定css样式,则可以创建某些文件夹,随后在api通过服务器路径来抉择配置。

.header {
 text-align: center;
 color: green;
 padding-bottom: 35px;
}

table {
 width: 80%;
 border-collapse: collapse;
}

td, th {
 border: 1px solid gray;
 padding: 15px;
 font-size: 22px;
 text-align: center;
}

table th {
 background-color: green;
 color: white;
}

  就是这样,我们有用于html创建的html模板。现在,我们可以继续执行controller逻辑。

[route("api/pdfcreator")]
 [apicontroller]
 public class pdfcreatorcontroller : controllerbase
 {
  private iconverter _converter;

  public pdfcreatorcontroller(iconverter converter)
  {
   _converter = converter;
  }

  [httpget]
  public iactionresult createpdf()
  {
   var globalsettings = new globalsettings
   {
    colormode = colormode.color,
    orientation = orientation.portrait,
    papersize = paperkind.a4,
    margins = new marginsettings { top = 10 },
    documenttitle = "pdf report"
   };

   var objectsettings = new objectsettings
   {
    pagescount = true,
    htmlcontent = templegenertor.gethtmlstring(),
    websettings = { defaultencoding = "utf-8", userstylesheet = path.combine(directory.getcurrentdirectory(), "assets", "style.css") },
    headersettings = { fontname = "arial", fontsize = 9, right = "page 
                        12下一页阅读全文
                        
                        您可能感兴趣的文章:如何使用rotativa在asp.net core mvc中创建pdf详解
                        
						
						
						
					

相关文章

  • 2018-09-09
  • 2013-09-09
  • 2013-05-05
  • 2012-11-11
  • 2016-08-08
  • ASP.NET Core中快速构建PDF文档的步骤分享第2/2页

    详解asp.net core 使用redis存储session

    本篇文章主要介绍了asp.net core 使用redis存储session ,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧。
  • 2012-06-06
  • 2016-08-08
  • 2008-11-11
  • 2017-07-07

最新评论

12

(0)
打赏 ASP.NET Core中快速构建PDF文档的步骤分享第2/2页 微信扫一扫

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

ASP.NET Core中快速构建PDF文档的步骤分享第2/2页
验证码: ASP.NET Core中快速构建PDF文档的步骤分享第2/2页
相关标签: asp.net asp.net core pdf

上一篇: asp.net MVC 在Controller控制器中实现验证码输出功能

下一篇: 十大生活好习惯养生推荐:泡脚上榜,饭后百步走第二

推荐阅读