Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iText Java API にフォントを追加するにはどうすればよいですか?システムにある .ttf 形式のフォント セットを追加するには、ソース コードのどのファイルを変更する必要がありますか?
これを試してください:
BaseFont base = BaseFont.createFont("c:/windows/fonts/arial.ttf", BaseFont.WINANSI); Font font = new Font(base, 11f, Font.BOLD);
BaseFontクラスも参照してください