im=Image.createImage("/2.png");
//Graphics g=im.getGraphics();
System.out.println("!!!11!!!!");
是可以通过的,而且出现图片
im=Image.createImage("/2.png");
//Graphics g=im.getGraphics();
System.out.println("!!!11!!!!");
g.setColor(0x009960ee);//在图片上画了东西@@@@
g.drawString("黑白两种色?",0,20,Graphics.TOP|Graphics.LEFT);//线程里面计算时间
g.drawRect(0,0,50,50);
这样就不行,
im=Image.createImage(90,90);//这里有变@@@@@
//Graphics g=im.getGraphics();
System.out.println("!!!11!!!!");
g.setColor(0x009960ee);
g.drawString("黑白两种色?",0,20,Graphics.TOP|Graphics.LEFT);//线程里面计算时间
g.drawRect(0,0,50,50);
这样却可以了,不得其解。
评论