- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
(使用 itextsharp 5.4.3)
我创建了一个应用程序,用户可以在其中创建围绕页面主要内容的自定义 xhtml 页眉和页脚。所以生成的pdf看起来像这样:
------------------------
| xhtml parsed Header |
------------------------
| |
| xhtml parsed content |
| |
------------------------
| xhtml parsed Footer |
------------------------
------------------------
| xhtml parsed Header |
------------------------
| |
| xhtml parsed content |
| |
------------------------
| Page 1 |
------------------------
------------------------
| |
------------------------
| |
| xhtml parsed content |
| |
------------------------
| Page 2 |
------------------------
------------------------
| |
------------------------
| |
| xhtml parsed content |
| |
------------------------
| Page 3 |
------------------------
Protected Sub btnPreview_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnPreview.Click
Dim bytes As Byte()
Dim replaced As String = HttpUtility.HtmlDecode(letterRadEdit.Content.Replace("<br>", "<br />"))
Dim replaced2 As String = HttpUtility.UrlDecode(replaced)
bytes = System.Text.Encoding.UTF8.GetBytes(letterRadEdit.Content)
Dim tagProcessor As tool.xml.html.DefaultTagProcessorFactory()
Using input As New MemoryStream(bytes, False)
Dim ms As New MemoryStream()
Dim document As New iTextSharp.text.Document(iTextSharp.text.PageSize.LETTER, 36.0F, 36.0F, 52.0F, 52.0F)
Dim headerFooter As New iTextSharpHeaderFooter()
If Not String.IsNullOrEmpty(ddlHeaders.SelectedValue) Or Not String.IsNullOrEmpty(ddlFooters.SelectedValue) Then
Using db As New dbEntities()
If Not String.IsNullOrEmpty(ddlHeaders.SelectedValue) Then
'Get header content
Dim headerGuid As Guid = New Guid(ddlHeaders.SelectedValue)
Dim selectedheader As New LetterHeaderFooter()
selectedheader = (From hf In db.LetterHeaderFooters
Where hf.HeadFootID = headerGuid And hf.HeadFootType = 1
Select hf).FirstOrDefault()
Dim headerbytes As Byte()
headerbytes = System.Text.Encoding.UTF8.GetBytes(HttpUtility.HtmlDecode(selectedheader.HeadFootContent.Replace("<br>", "<br />").Trim()))
headerFooter.HeaderHTML = HttpUtility.HtmlDecode(selectedheader.HeadFootContent.Replace("<br>", "<br />").Trim())
headerFooter.HeaderContent = headerbytes
'Start building header into table
Dim page As New Rectangle(document.PageSize.Width - 72.0F, document.PageSize.Height)
Dim cellHeight As Single = document.TopMargin
Dim header As New PdfPTable(1)
header.TotalWidth = page.Width
Dim c As New PdfPCell()
c.HorizontalAlignment = Element.ALIGN_LEFT
c.Border = PdfPCell.BOTTOM_BORDER
Dim mh As SampleHandler = New SampleHandler()
Using sr As TextReader = New StringReader(headerFooter.HeaderHTML)
XMLWorkerHelper.GetInstance().ParseXHtml(mh, sr)
End Using
For Each el As IElement In mh.elements
c.AddElement(el)
Next
header.AddCell(c)
Dim startingMargin As Single = (header.TotalHeight + document.TopMargin)
document.SetMargins(document.LeftMargin, document.RightMargin, startingMargin, document.BottomMargin)
headerFooter.PageHeader = header
End If
End Using
End If
Dim writer As PdfWriter = PdfWriter.GetInstance(document, ms)
writer.PageEvent = headerFooter
writer.CloseStream = False
document.Open()
Dim htmlContext As HtmlPipelineContext = New HtmlPipelineContext(Nothing)
htmlContext.SetAcceptUnknown(True)
htmlContext.SetTagFactory(Tags.GetHtmlTagProcessorFactory())
Dim cssResolver As ICSSResolver = XMLWorkerHelper.GetInstance().GetDefaultCssResolver(True)
cssResolver.AddCssFile(HttpContext.Current.Server.MapPath("~/assets/css/pdf.css"), True)
Dim pipeline As New CssResolverPipeline(cssResolver, New HtmlPipeline(htmlContext, New PdfWriterPipeline(document, writer)))
Dim pdfworker As New XMLWorker(pipeline, True)
Dim p As New XMLParser(True, pdfworker, New System.Text.UTF8Encoding)
Try
p.Parse(input)
Catch
Finally
pdfworker.Close()
End Try
document.Close()
ms.Position = 0
Response.ContentType = "application/pdf"
Response.AppendHeader("Expires", "0")
Response.AppendHeader(
"Cache-Control",
"must-revalidate, post-check=0, pre-check=0"
)
Response.AppendHeader("Pragma", "public")
Response.AppendHeader("content-disposition", "attachment; filename=preview.pdf")
Response.BinaryWrite(ms.ToArray())
ms.Flush()
End Using
End Sub
Public Class iTextSharpHeaderFooter
Inherits PdfPageEventHelper
Private _HeaderStream As Byte()
Private _FooterStream As Byte()
Private _HeaderHTML As String
Private _FooterHTML As String
Private _headerPdf As Document
Private _footerPdf As Document
Private _usesHeader As Boolean
Private _pageHeader, _pageFooter As PdfPTable
'This is the contentbyte object of the writer
Dim cb As PdfContentByte
' we will put the final number of pages in a template
Dim template As PdfTemplate
' this is the BaseFont we are going to use for the header / footer
Dim bf As BaseFont = Nothing
' This keeps track of the creation time
Dim PrintTime As DateTime = DateTime.Now
Public Property HeaderContent() As Byte()
Get
Return _HeaderStream
End Get
Set(ByVal value As Byte())
_HeaderStream = value
End Set
End Property
Public Property FooterContent() As Byte()
Get
Return _FooterStream
End Get
Set(ByVal value As Byte())
_FooterStream = value
End Set
End Property
Public Property HeaderHTML() As String
Get
Return _HeaderHTML
End Get
Set(ByVal value As String)
_HeaderHTML = value
End Set
End Property
Public Property FooterHTML() As String
Get
Return _FooterHTML
End Get
Set(ByVal value As String)
_FooterHTML = value
End Set
End Property
Public Property letterHeader() As Document
Get
Return _headerPdf
End Get
Set(ByVal value As Document)
_headerPdf = value
End Set
End Property
Public Property letterFooter() As Document
Get
Return _footerPdf
End Get
Set(ByVal value As Document)
_footerPdf = value
End Set
End Property
Public Property UsesHeader() As Boolean
Get
Return _usesHeader
End Get
Set(ByVal value As Boolean)
_usesHeader = value
End Set
End Property
Public Property PageHeader() As PdfPTable
Get
Return _pageHeader
End Get
Set(ByVal value As PdfPTable)
_pageHeader = value
End Set
End Property
Public Property PageFooter() As PdfPTable
Get
Return _pageFooter
End Get
Set(ByVal value As PdfPTable)
_pageFooter = value
End Set
End Property
' we override the onOpenDocument method
Public Overrides Sub OnOpenDocument(ByVal writer As PdfWriter, ByVal document As Document)
MyBase.OnOpenDocument(writer, document)
Try
PrintTime = DateTime.Now
Catch de As DocumentException
Catch ioe As System.IO.IOException
End Try
End Sub
Public Overrides Sub OnStartPage(ByVal writer As PdfWriter, ByVal document As Document)
MyBase.OnStartPage(writer, document)
End Sub
Public Overrides Sub OnEndPage(ByVal writer As PdfWriter, ByVal document As Document)
MyBase.OnEndPage(writer, document)
Dim pageSize As Rectangle = document.PageSize
Dim htmlContext As HtmlPipelineContext = New HtmlPipelineContext(Nothing)
htmlContext.SetAcceptUnknown(True)
htmlContext.SetTagFactory(Tags.GetHtmlTagProcessorFactory())
If Not HeaderContent Is Nothing And HeaderContent.Length > 0 And writer.PageNumber < 2 Then
Dim page As New Rectangle(document.PageSize.Width - 72.0F, document.PageSize.Height)
PageHeader.WriteSelectedRows(0, -1, 0, -1, document.LeftMargin, page.Height, writer.DirectContent)
End If
If writer.PageNumber > 1 Then
document.SetPageSize(New Rectangle(36.0F, 36.0F, 52.0F, PageFooter.TotalHeight))
End If
If Not FooterContent Is Nothing And FooterContent.Length > 0 Then
Dim page As New Rectangle(document.PageSize.Width - 72.0F, document.PageSize.Height)
PageFooter.WriteSelectedRows(0, -1, 0, -1, document.LeftMargin, PageFooter.TotalHeight, writer.DirectContent)
End If
Dim fontSize As Integer = 160
Dim xPosition As Integer = 300
Dim yPosition As Integer = 400
Dim angle As Integer = 45
Dim under As PdfContentByte = writer.DirectContentUnder
Dim baseFont As BaseFont = baseFont.CreateFont(baseFont.HELVETICA, baseFont.WINANSI, baseFont.EMBEDDED)
under.BeginText()
under.SetColorFill(BaseColor.LIGHT_GRAY)
under.SetFontAndSize(baseFont, fontSize)
under.ShowTextAligned(PdfContentByte.ALIGN_CENTER, "Preview", xPosition, yPosition, angle)
under.EndText()
End Sub
Public Overrides Sub OnCloseDocument(ByVal writer As PdfWriter, ByVal document As Document)
MyBase.OnCloseDocument(writer, document)
End Sub
End Class
最佳答案
我相信我已经解决了这个问题,OnEndPage 函数的部分:
If writer.PageNumber > 1 Then
If writer.PageNumber = 1 Then
关于vb.net - iTextSharp 对不同的页面应用不同的边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19974620/
我有几个问题。我是 Visual Basic 这个领域的新手,所以不要取笑我。 1.) VB.NET之间有什么区别和 VB ? 2.) 我需要为 Windows 开发基本的应用程序。(如记事本)我应该
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我是框架 3.5 的新手。我注意到,在创建 Web 内容表单时,除了 aspx.vb 页面之外,它还会创建一个 aspx.designer.vb 页面。谁能向我解释一下它们之间的区别以及它们的用途吗?
我只是想知道 VB.NET 和 VB 2010 是否相同。 我只是想知道。 最佳答案 VB 2010 是 VB.Net 的最新版本。 Microsoft 在 VB 2005 版本中删除了 VB 的“.
我是框架 3.5 的新手。我注意到,在创建 Web 内容表单时,除了 aspx.vb 页面之外,它还会创建一个 aspx.designer.vb 页面。谁能向我解释一下它们之间的区别以及它们的用途吗?
我正在尝试将 VB 函数移植到 VB.NET,但我无法使该函数正常工作并正确更新。 rFormat = Format(Format(Value, fmt), String$(Len(fmt), "@"
如何在VB中注释多行代码/代码块? 最佳答案 VB 在语言级别上没有这样的构造。它有使用撇号字符的单行注释: ' hello world ' this is a comment Rem this is
我正在使用我在 VB2005 中创建的表单在按下按钮时打开程序,然后在文本字段中显示进程 ID(再次按下按钮时)。当我运行它时,表单将打开程序 (Notepad.exe) 但当我单击按钮查看进程 ID
我正在尝试添加一个从 vb.net 创建的 dll,并且想将其导入到现有的 vb 6 项目中,但它给了我错误“无法添加对指定文件的引用”。 。有人知道如何解决这个问题吗? 最佳答案 需要遵循以下步骤:
我有一个数据 GridView 。右键单击它会显示一个上下文菜单,但它始终位于右上角。我想要它,以便菜单出现在用户右键单击的单元格上。它可能是单元格 1 或单元格 2 或其他。 谢谢福尔坎 最佳答案
我只是在 Visual Studio 2010 中使用 Visual Basic。有人知道我将如何制作“浏览文件夹(或文件)”按钮吗?我对 VB 真的很陌生,我只是在寻找一些简单的帮助:) 最佳答案
这次感到困惑... 最简单的代码行有时可能起作用,有时却没有。首先,我认为问题在于我试图读取DWORD的值,但是由于我可以从某些键读取DWORD值,所以这一定不是问题。现在的问题似乎是,如果 key
我的代码中有此方法: Private Sub Display() Received.AppendText(" - " & RXArray) End Sub 这两个调用之间有什么区别:
我正在创建一个宏程序来记录和回放鼠标和键盘输入。录制效果很好,鼠标播放也一样,但是我在播放键盘输入时遇到了麻烦——特别是在释放之前按住一个键几秒钟。这不等同于重复按键。这是我尝试过的: 技巧 1:Me
我最近刚刚了解了 VB.NET 中静态局部变量的使用,并想知道它在延迟加载属性中的潜在用途。 考虑以下示例代码。 Public Class Foo Implements IFoo End Clas
VB 有一个 C# 没有的特性,在项目级别导入命名空间(我的项目>引用>导入命名空间)。当新人在源代码控制之外检查项目时,我们的自定义导入不包括在内。这个 VB 特定的导入命名空间存储在哪里? 最佳答
我已将我的问题缩小到这个简单的案例,但似乎无法找到发生了什么: 我有两个表单,一个只有一个按钮,另一个是空的。 单击按钮时,form1 隐藏和显示 form2 出现时,form2隐藏,form1再次显
为什么下面的简单代码会失败?无论我使用 LinearGradientMode 的哪个值,这段代码总是用从左到右的渐变填充路径。 graphPath 是在别处创建的 GraphicPath 对象(基本上
我可以多快替换字符串中的字符? 所以这个问题的背景是这样的:我们有几个应用程序通过套接字相互通信并与客户端的应用程序通信。这些套接字消息包含不可打印的字符(例如 chr(0)),需要用预定的字符串(例
如何从任何文件中读取原始字节数组... Dim bytes() as Byte ..然后将该字节数组写回新文件? 我需要它作为一个字节数组来做一些处理。 我目前正在使用: 阅读 Dim fInfo
我是一名优秀的程序员,十分优秀!