Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. public override void OnCloseDocument(PdfWriter writer, Document document)
  2. {
  3. var text = "derp a derp.";
  4. var len = _baseFont.GetWidthPoint(text, 10);
  5.  
  6. // Write text
  7. _pdfContentByte.BeginText();
  8. _pdfContentByte.SetFontAndSize(_baseFont, 10);
  9. _pdfContentByte.SetTextMatrix(document.PageSize.GetRight(120), document.PageSize.GetBottom(30));
  10. _pdfContentByte.ShowText(text);
  11. _pdfContentByte.EndText();
  12.  
  13. // Write line
  14. _pdfContentByte.MoveTo(40, document.PageSize.GetBottom(50));
  15. _pdfContentByte.LineTo(document.PageSize.Width - 40, document.PageSize.GetBottom(50));
  16. _pdfContentByte.SetLineDash(3f, 3f);
  17. _pdfContentByte.Stroke();
  18. _pdfContentByte.SetLineDash(0f);
  19.  
  20. base.OnCloseDocument(writer, document);
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement