基本信息
文件名称:第十二章-图形与多媒体处理.ppt
文件大小:107 KB
总页数:36 页
更新时间:2024-09-19
总字数:约1.05万字
文档摘要

第十二章图形与多媒体处理AWT(AbstractWindowsToolkit)是抽象窗口工具包的缩写,支持窗口界面的创建、简单图形的绘制、图形化文本输出和事件监听。图像、动画和声音处理是多媒体技术的主要内容。§12.1基本图形 基本图形包括点、线、圆、矩形等,用他们构成复杂的图形,它们在AWT中的Graphics类中。直线 绘制直线的方法为: drawLine(x1,y1,x2,y2) 其中x1,y1:x2,y2是直线两个端点的坐标。在窗口随机绘制10条直线 importjava.applet.Applet; importjava.awt.Graphics; publicclassDrawLinesextendsApplet{ publicvoidpaint(Graphicsg){ inti,x1,y1,x2,y2; for(i=1;i=10;i++){ x1=(int)(Math.random()*10); y1=(int)(Math.random()*200); x2=(int)(Math.random()*380); y2=(int)(Math.random()*200); g.drawLine(x1,y1,x2,y2); } }}矩形例、在窗口绘制若干个矩形Importjava.applet.Applet;Importjava.awt.Graphics;PublicclassRectanglesextendsApplet{ publicvoidpaint(Graphicsg){ g.drawRect(20,30,80,80); g.fillRect(120,30,80,80); g.drawRoundRect(220,30,80,80,20,20); g.fillRoundRect(320,30,80,80,20,20); }} drawRect方法用来绘制矩形框,其中前两个参数为矩形框左上角的坐标,后两个参数是矩形的宽和高。fillRect方法是用前景色填充用drawRect绘制的矩形;drawRoundRect与fillRoundRect又是一对,其中最后两个参数表示圆角的宽度和高度,值大些圆角就会偏平些,反之,就要使其值小些。利用Graphics的方法绘三维矩形Importjava.applet.Applet;Importjava.awt.Graphics;Imporjava.awt.Color;PublicclassDraw3DrectsextendsApplet{ publicvoidpaint(Graphicsg){ g.setColor(Color.yellow); g.draw3DRect(20,30,80,80,true); g.draw3DRect(20,30,80,80,false); g.fill3Drect(220,30,80,80,true); g.fill3Drect(220,30,80,80,false);}}为True绘出三维是凸起的,为False绘出的三维是凹陷的。椭圆 绘椭圆的方法drawOval和fillOval具有相同的参数;前两个参数指出包围椭圆矩形的左上角的坐标,后两个参数指定椭圆的宽度和高度;宽和高相同即为圆。用drawOval和fillOval绘椭圆Importjava.applet.Applet;Importjava.awt.Graphics;Imporjava.awt.Color;PublicclassDrawOvalsextendsApplet{ publicvoidpaint(Graphicsg){ g.setColor(Color.red); g.drawOval(35,35,100,60); g.setColor(Color.blue); g.fillOval(200,15,60,100); }}圆弧 用drawArc和fillArc方法分别绘圆弧Importjava.applet.Applet;Importjava.awt.Graphics;Imporjava.awt.Color;PublicclassDrawArcsextendsApplet{ publicvoidpaint(Graphicsg){ g.setColor(Color.red); g.drawArc(0,20,100,100,0,90); g.fi