Font Factory Styles Example
import java.io.FileOutputStream; import com.lowagie.text.Document; import com.lowagie.text.FontFactory; import com.lowagie.text.Phrase; import com.lowagie.text.pdf.PdfWriter; public class FontFactoryStylesPDF { public static void main(String[] args) { Document document = new Document(); try { PdfWriter.getInstance(document, new FileOutputStream( "FontFactoryStylesPDF.pdf")); document.open(); FontFactory.register("c:\\windows\\fonts\\arial.ttf"); Phrase myPhrase = new Phrase("This is font family Arial ", FontFactory.getFont("Arial", 8)); document.add(myPhrase); } catch (Exception e) { System.err.println(e.getMessage()); } document.close(); } }
1. | Using Font Factory | ![]() | |
2. | Using Font Factory to Get all Registered Families | ![]() | |
3. | Using FontFactory to construct fonts | ![]() | |
4. | Font Factory Styles: Bold | ![]() | |
5. | Using Registered Font | ![]() |