Thành viên | Nội dung |
thinhngheo
16 bài
| Document document = new Document(PageSize.A4, 25, 25, 30, 30); PdfWriter writer = PdfWriter.GetInstance(document, fs);
string OPENSAN_TFF = Server.MapPath("/css/OpenSans.TTF");
//Create a base font object making sure to specify IDENTITY-H BaseFont bf = BaseFont.CreateFont(OPENSAN_TFF, BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
//Create a specific font object Font f = new Font(bf, 12, Font.NORMAL);
document.Open(); document.Add(new Paragraph("Hello World!"));
document.Close(); writer.Close();
fs.Close();
|
aspnet
Lập trình không biên giới 598 bài
| private Paragraph MakeParagraphAlign(string str, string align, Font f) { Paragraph p = new Paragraph(str, f); switch (align) { case "r": p.Alignment = Element.ALIGN_RIGHT;break; case "c": p.Alignment = Element.ALIGN_CENTER; break; }; return p; } --- Cây sẽ cho lộc và cây sẽ cho hoa ...
|
|