gpt4 book ai didi

c# - 如何使用pdfsharp在pdf中绘制水平线

转载 作者:太空宇宙 更新时间:2023-11-03 19:44:50 25 4
gpt4 key购买 nike

我们如何使用 pdfsharp 绘制两条宽度为 3cm 且中间有文本的水平线。我知道如何打印字符串并且效果很好。

我需要在两条水平线之间打印日期。有人可以帮我吗?这是我打印日期的代码

 graph.DrawString(date1, font, XBrushes.Black, new XRect(6.259843 * 72, 0.905512 * 72, 
pdfPage.Width.Point, pdfPage.Height.Point), XStringFormats.TopLeft);

最佳答案

您可以使用此代码段。它将在页面中间画一条红线。您可能需要尝试使用 5 的行高来获得所需的大小。

PdfPage pdfPage = yourPDFdoc.AddPage();
pdfPage.Width = XUnit.FromMillimeter(210);
pdfPage.Height = XUnit.FromMillimeter(297);

using (XGraphics gfx = XGraphics.FromPdfPage(pdfPage))
{
XPen lineRed = new XPen(XColors.Red, 5);

gfx.DrawLine(lineRed, 0, pdfPage.Height / 2, pdfPage.Width, pdfPage.Height / 2);
}

关于c# - 如何使用pdfsharp在pdf中绘制水平线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47365183/

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