Chuyển đến nội dung chính

iTextSharp: Làm việc với Font

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:

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 iTextSharp
FontFactory.RegisterDirectory("C:\\WINDOWS\\Fonts");
Để truy xuất Font được đăng ký, bạn sử dụng FontFactory.RegisteredFonts
Ví 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 PDF
 Tham 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

Bài đăng phổ biến từ blog này

[ASP.NET MVC] Authentication và Authorize

Một trong những vấn đề bảo mật cơ bản nhất là đảm bảo những người dùng hợp lệ truy cập vào hệ thống. ASP.NET đưa ra 2 khái niệm: Authentication và Authorize Authentication xác nhận bạn là ai. Ví dụ: Bạn có thể đăng nhập vào hệ thống bằng username và password hoặc bằng ssh. Authorization xác nhận những gì bạn có thể làm. Ví dụ: Bạn được phép truy cập vào website, đăng thông tin lên diễn đàn nhưng bạn không được phép truy cập vào trang mod và admin.

ASP.NET MVC: Cơ bản về Validation

Validation (chứng thực) là một tính năng quan trọng trong ASP.NET MVC và được phát triển trong một thời gian dài. Validation vắng mặt trong phiên bản đầu tiên của asp.net mvc và thật khó để tích hợp 1 framework validation của một bên thứ 3 vì không có khả năng mở rộng. ASP.NET MVC2 đã hỗ trợ framework validation do Microsoft phát triển, tên là Data Annotations. Và trong phiên bản 3, framework validation đã hỗ trợ tốt hơn việc xác thực phía máy khách, và đây là một xu hướng của việc phát triển ứng dụng web ngày nay.

Tổng hợp một số kiến thức lập trình về Amibroker

Giới thiệu về Amibroker Amibroker theo developer Tomasz Janeczko được xây dựng dựa trên ngôn ngữ C. Vì vậy bộ code Amibroker Formula Language sử dụng có syntax khá tương đồng với C, ví dụ như câu lệnh #include để import hay cách gói các object, hàm trong các block {} và kết thúc câu lệnh bằng dấu “;”. AFL trong Amibroker là ngôn ngữ xử lý mảng (an array processing language). Nó hoạt động dựa trên các mảng (các dòng/vector) số liệu, khá giống với cách hoạt động của spreadsheet trên excel.