Java 는 외부 글꼴 즉 사용자 정의 글꼴 파일 을 참조 합 니 다.
2092 단어 프로젝트 개발
package cy.util;
import java.awt.Font;
import java.awt.FontFormatException;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
public class CyFont {
private Font definedFont = null;
public Font getDefinedFont(int ft,float fs) {
String fontUrl="";
switch (ft) {
case 1:
fontUrl="/opt/hwxk.ttf";//
break;
case 2:
fontUrl="/opt/hwkt.ttf";//
break;
default:
String fonturllocal="/usr/share/fonts/wqy-zenhei/wqy-zenhei.ttc";
if(!new File(fonturllocal).exists()){
fontUrl="/usr/share/fonts/truetype/wqy/wqy-zenhei.ttc";
}else{
fontUrl=fonturllocal;
}
break;
}
if (definedFont == null) {
InputStream is = null;
BufferedInputStream bis = null;
try {
is =new FileInputStream(new File(fontUrl));
bis = new BufferedInputStream(is);
definedFont = Font.createFont(Font.TRUETYPE_FONT, is);
// ,float
definedFont = definedFont.deriveFont(fs);
} catch (FontFormatException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (null != bis) {
bis.close();
}
if (null != is) {
is.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
return definedFont;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
CyFont cf=new CyFont();
cf.getDefinedFont(1, 50.0);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java 는 외부 글꼴 즉 사용자 정의 글꼴 파일 을 참조 합 니 다.때때로 우 리 는 프로그램 에서 자바 글꼴 을 사용 하지만 모든 글꼴 시스템 에 있 는 것 은 아니다. 우 리 는 외부 사용자 정의 글꼴 을 사용 할 수 있다. 그러면 프로그램 이전 배치 에서 작업 이 적 을 것 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.