gpt4 book ai didi

c# - 使用 itextsharp 在 pdf 文件中画线的问题

转载 作者:可可西里 更新时间:2023-11-01 08:36:13 29 4
gpt4 key购买 nike

我正在使用 itextsharp 在 asp.net c# 中生成一个 pdf 文件。我无法绘制水平线/垂直线/虚线。

我尝试使用以下代码绘制一条线,我没有收到任何错误,但该线也没有显示在 pdf 文件中

    PdfContentByte cb = wri.DirectContent;
cb.SetLineWidth(2.0f); // Make a bit thicker than 1.0 default
cb.MoveTo(20, pdfDocument.Top - 40f);
cb.LineTo(400, pdfDocument.Top - 40f);
cb.Stroke();

代码有什么问题,是不是因为x y坐标的位置?我曾使用粗略的点来了解 pdf 中的大概位置,但该行从未出现在 pdf 文件中。

我正在寻找的输出如下图所示。 enter image description here

最佳答案

Paragraph p = new Paragraph(new Chunk(new iTextSharp.text.pdf.draw.LineSeparator(0.0F, 100.0F, BaseColor.BLACK, Element.ALIGN_LEFT, 1)));
document.Add(p);

关于c# - 使用 itextsharp 在 pdf 文件中画线的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5103404/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com