Java tutorial
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(); } }