0
A4用紙の中央に線を引きますが、私のコードは、PDFのフッターに行を生成するに引かれた線に作る方法私はページの真ん中に引かれた線にしたいiTextSharp
public void GeneratePdf()
{
Document document = new Document(PageSize.A4, 0, 0, 50, 50);
var output = new FileStream("doctest.pdf", FileMode.Create);
var writer = PdfWriter.GetInstance(document, output);
document.Open();
document.NewPage();
PdfContentByte contentByte = writer.DirectContent;
contentByte.SetLineWidth(1);
contentByte.MoveTo(0, 14);
contentByte.LineTo(document.PageSize.Width, 0);
contentByte.Stroke();
document.Close();
writer.Close();
}
ページの真ん中?
「中」とはどういう意味ですか?上下を等分する水平線?左右に均等に分かれる縦線? – mkl