Java制作文体文字,或许说是实现3D风格的文字,Image image; //绘制文字的Image对象   Graphics graphics; //绘制文字的Graphics对象   Thread thread; //显示三维文字线程   int width,height; //显示宽度、高度   String message; //显示信息   int fontSize; //文字尺寸   Font font; //字体   public void init() {   Dimension dim=getSize(); //得到Applet的尺寸   width = dim.width