Guest User

Untitled

a guest
Jan 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Font timesBold = new Font(Font.FontFamily.TIMES_ROMAN, fontSize_small, Font.BOLD, BaseColor.BLACK);
  2. Font timesNormal = new Font(Font.FontFamily.TIMES_ROMAN, fontSize_small, Font.NORMAL, BaseColor.BLACK);
  3.  
  4. // Se a fonte não está registrada
  5. if (!FontFactory.IsRegistered("Garamond"))
  6. {
  7. // Registro a fonte
  8. FontFactory.RegisterFamily("Garamond", "Garamond", @"C:WindowsFonts");
  9. // Registro o diretório(não tinha funcionado até tentar isso...)
  10. FontFactory.RegisterDirectories();
  11. }
  12.  
  13. // Faço a atribuição normalmente
  14. Font garamondBold = FontFactory.GetFont("Garamond", 12, 1);
  15. Font garamondNormal = FontFactory.GetFont("Garamond");
Add Comment
Please, Sign In to add comment