ASP.NET Core中快速构建PDF文档的步骤分享第2/2页
比如我们需要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 使用redis存储session
本篇文章主要介绍了asp.net core 使用redis存储session ,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧。- 2012-06-06
- 2016-08-08
- 2008-11-11
- 2017-07-07
赞 (0)打赏 微信扫一扫相关文章:
-
-
jwt认证简单介绍 关于jwt的介绍网上很多,此处不在赘述,我们主要看看jwt的结构。 jwt主要由三部分组成,如下: heade... [阅读全文]
-
方法一: 开始-运行:regsvr32 scrrun.dll 方法二: 请将以下语句复制到记事本中,另存为后缀为.cmd的文件,并运行。当... [阅读全文]
-
摘要: 本文演示如何向有效用户提供jwt,以及如何在webapi中使用该token通过jwtbearermiddleware中间件对用户进行身... [阅读全文]
-
前言:在与传统的asp.net mvc项目相比,.net core项目在项目目录的文件结构上和功能上与前者都有很大的区别。例如:在.net co... [阅读全文]
-
本文为大家分享了vs2019以及mfc的安装详细教程,供大家参考,具体内容如下 一、安装过程: 1、搜索visual studio 进入官网... [阅读全文]
-
版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。
发表评论
验证码:
最新评论