2014년 10월 27일 월요일

특정 경로에 있는 폰트 로드(JAVA)

1.4이하 JDK에서는

  File file = new File( Config.FONT_BASEPATH + "humanexpo.ttf" );
  FileInputStream fi = new FileInputStream( file );
  Font font = Font.createFont( Font.TRUETYPE_FONT, fi );

1.5이상 JDK에서는
  File file = new File( Config.FONT_BASEPATH + "humanexpo.ttf" );
  Font font = Font.createFont( Font.TRUETYPE_FONT, file );

참 지랄같은 자바;

댓글 없음: