ItextSharp / PDF - 图像边框出现在PDF文件中

时间:2018-05-14 17:22:11

标签: asp.net vb.net pdf itext

我真的需要你的帮助!我在创建PDF文件时遇到问题。我做了研究,但没有找到任何可以帮助我的东西。当我将图像插入PDF时 - 图像周围出现边框。我没有设置任何边框,图像没有任何边框。当我调整PDF页面的大小时 - 边框可能会消失,在其他调整大小后,它会再次出现。当我打印PDF页面时 - 图像周围没有任何边框。我在VB.NET中的代码:

theImage = iTextSharp.text.Image.GetInstance(screenShotPath)

width = currentPageObjectsListSortedByZIndex(j)(9).Substring(0, 
 currentPageObjectsListSortedByZIndex(j)(9).Count - 2)

height = currentPageObjectsListSortedByZIndex(j)(10).Substring(0, currentPageObjectsListSortedByZIndex(j)(10).Count - 2)

width = convertPixelsToPoints(width)
height = convertPixelsToPoints(height)

Dim x = Convert.ToDouble(currentPageObjectsListSortedByZIndex(j)(8).Substring(0, currentPageObjectsListSortedByZIndex(j)(8).Count - 2)) + Convert.ToInt32(padding)

Dim y = Convert.ToDouble(currentPageObjectsListSortedByZIndex(j)(7).Substring(0, currentPageObjectsListSortedByZIndex(j)(7).Count - 2)) + Convert.ToInt32(padding)

x = convertPixelsToPoints(x)
y = convertPixelsToPoints(y)
y = Doc.PageSize.Height - y - height

theImage.SetAbsolutePosition(x, y)
Doc.Add(theImage)

这是PDF页面的示例: enter image description here

您是否知道如何解决此问题?谢谢你的回答! 对不起,如果我的问题看起来很奇怪

0 个答案:

没有答案