Trong phần này, mình sẽ hướng dẫn bạn cách sử dụng Font để tạo tài liệu PDF
Phần 1: Hướng dẫn sử dụng iTextSharp
iText chỉ hỗ trợ Standard Type 1 fonts, gồm 14 fonts: Courier, Courier Bold, Courier Italic, Courier Bold and Italic, Helvetica, Helvetica Bold, Helvetica Italic, Helvetica Bold and Italic, Times Roman, Times Roman Bold, Times Roman Italic, Times Roman Bold and Italic, Symbol, ZapfDingBats®
Font mặc định là Helvetica, 12pt, black, normal.
Cú pháp:
VD: Sử dụng font mặc định và font hỗ trợ bởi iTextSharp
Ví dụ dưới đây liệt kê toàn bộ font trong hệ thống
Basefont.Embed = true: File PDF sẽ chứa file font myspecial.ttf.
Ví dụ:
Bạn sẽ thấy font được đính kèm vào trong file PDF. Tuy nhiên, kích thước file PDF sẽ lớn hơn vì phải chứa font cần dùng.
Tham khảo: https://www.mikesdotnetting.com/article/81/itextsharp-working-with-fonts
Phần 1: Hướng dẫn sử dụng iTextSharp
iText chỉ hỗ trợ Standard Type 1 fonts, gồm 14 fonts: Courier, Courier Bold, Courier Italic, Courier Bold and Italic, Helvetica, Helvetica Bold, Helvetica Italic, Helvetica Bold and Italic, Times Roman, Times Roman Bold, Times Roman Italic, Times Roman Bold and Italic, Symbol, ZapfDingBats®
Font mặc định là Helvetica, 12pt, black, normal.
Cú pháp:
BaseFont.CreateFont(string name, string encoding, bool embedded);
Font(BaseFont bf, float size, int style, BaseColor color)
Encoding: CP1252, CP1257, WinAnsi, MACROMAN.VD: Sử dụng font mặc định và font hỗ trợ bởi iTextSharp
var fs = new FileStream("standard-font.pdf", FileMode.Create, FileAccess.Write, FileShare.None);
var doc = new Document();
var pdfWriter = PdfWriter.GetInstance(doc, fs);
doc.Open();
doc.Add(new Paragraph("Default font: abcdefghijklmnopqrstuvwxyz"));
var helveticaFont = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.WINANSI, false);
var helveticaFontStyle = new Font(helveticaFont, 12, Font.NORMAL, BaseColor.BLUE);
doc.Add(new Paragraph("HELVETICA, 12pt, Normal, blue: abcdefghijklmnopqrstuvwxyz", helveticaFontStyle));
//use Times Roman font
var bfTimes = BaseFont.CreateFont(BaseFont.TIMES_ROMAN, BaseFont.CP1252, false);
var times = new Font(bfTimes, 12, Font.ITALIC, BaseColor.RED);
doc.Add(new Paragraph("TIMES_ROMAN, 12pt, Italic, Red: abcdefghijklmnopqrstuvwxyz", times));
doc.Close();
Kết quả:
Đăng ký font trong Windows
Nếu bạn muốn sử dụng Font trong Windows, bạn sử dụng phương thức Font.RegisterDirectory(string dir) để đăng ký Font trong hệ thống cùng với 14 font mặc định của iTextSharpFontFactory.RegisterDirectory("C:\\WINDOWS\\Fonts");
Để truy xuất Font được đăng ký, bạn sử dụng FontFactory.RegisteredFontsVí dụ dưới đây liệt kê toàn bộ font trong hệ thống
var fs = new FileStream("get-font.pdf", FileMode.Create, FileAccess.Write, FileShare.None);
var doc = new Document();
var pdfWriter = PdfWriter.GetInstance(doc, fs);
doc.Open();
//list all fonts in the system
var totalfonts = FontFactory.RegisterDirectory("C:\\WINDOWS\\Fonts");
var sb = new StringBuilder();
foreach (var fontname in FontFactory.RegisteredFonts)
{
sb.Append(fontname + "\n");
}
doc.Add(new Paragraph("All Fonts:\n" + sb));
var arial = FontFactory.GetFont("Arial", 28, BaseColor.GRAY);
doc.Add(new Paragraph("Arial, 28pt, GRAY: abcdefghijklmnopqrstuvwxyz", arial));
doc.Close();
Đăng ký Font
Có những trường hợp, bạn phải sử dụng font tại directory nào đó, thay vì sử dụng font trong hệ thống. Trước tiên bạn cần đăng ký với iTextSharp:BaseFont customfont = BaseFont.CreateFont(fontpath + "myspecial.ttf", BaseFont.CP1252, BaseFont.EMBEDDED);
Giải thích:Basefont.Embed = true: File PDF sẽ chứa file font myspecial.ttf.
Ví dụ:
var fs = new FileStream("embeded_font.pdf", FileMode.Create, FileAccess.Write, FileShare.None);
var doc = new Document();
var pdfWriter = PdfWriter.GetInstance(doc, fs);
doc.Open();
//var path = new DirectoryInfo("");
var baseFont = BaseFont.CreateFont("fonts/vnibaybuom.ttf", BaseFont.CP1252, true);
var baybuom = new Font(baseFont, 12);
doc.Add(new Paragraph("Vni-BayBuom, 12pt, Black: abcdefghijklmnopqrstuvwxyz", baybuom));
doc.Close();
Mở file PDF -> Properties:Bạn sẽ thấy font được đính kèm vào trong file PDF. Tuy nhiên, kích thước file PDF sẽ lớn hơn vì phải chứa font cần dùng.
Kết luận
Qua bài viết này, bạn sẽ nắm được 3 cách sử dụng Font trong iTextSharp. Trong những bài viết sắp tới, mình sẽ hướng dẫn bạn cách chèn nội dung vào file PDFTham khảo: https://www.mikesdotnetting.com/article/81/itextsharp-working-with-fonts
Chúc các bạn thành công
Nhận xét
Đăng nhận xét