Java Font.deriveFont(int style, AffineTransform trans)
Syntax
Font.deriveFont(int style, AffineTransform trans) has the following syntax.
public Font deriveFont(int style, AffineTransform trans)
Example
In the following code shows how to use Font.deriveFont(int style, AffineTransform trans) method.
/*from w w w .j a v a2 s . c o m*/
import java.awt.Font;
import java.awt.geom.AffineTransform;
import java.io.FileInputStream;
import java.io.InputStream;
public class Main {
public static void main(String[] args) throws Exception{
String fontFileName = "yourfont.ttf";
InputStream is = new FileInputStream(fontFileName);
Font ttfBase = Font.createFont(Font.TRUETYPE_FONT, is);
Font ttfReal = ttfBase.deriveFont(Font.BOLD,AffineTransform.getRotateInstance(0.5));
}
}
Home »
Java Tutorial »
java.awt »
Java Tutorial »
java.awt »