Download presentation
Presentation is loading. Please wait.
Published byEric Francis Modified over 9 years ago
1
Omer Boyaci
2
(C) 2010 Pearson Education, Inc. All rights reserved. Omer Boyaci
3
private BufferedImage im; im = ImageIO.read( getClass().getResource("ball.gif")); Image Loading (C) 2010 Pearson Education, Inc. All rights reserved.
4
public BufferedImage loadImage(String fnm){ /* Load the image from, returning it as a BufferedImage which is compatible with the graphics device being used. Uses ImageIO. */ try { GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment( ); GraphicsConfiguration gc = ge.getDefaultScreenDevice( ).getDefaultConfiguration( ); BufferedImage im = ImageIO.read(getClass( ).getResource(fnm)); int transparency = im.getColorModel( ).getTransparency( ); BufferedImage copy = gc.createCompatibleImage( im.getWidth( ),im.getHeight( ),transparency ); // create a graphics context Graphics2D g2d = copy.createGraphics(); // copy image g2d.drawImage(im,0,0,null); g2d.dispose( ); return copy; } catch(IOException e) { System.out.println("Load Image error for " + fnm + ":\n" + e); return null; } } // end of loadImage( ) (C) 2010 Pearson Education, Inc. All rights reserved.
5
Image Names (C) 2010 Pearson Education, Inc. All rights reserved.
6
You can load individual images image strips multiple image files that represent an animation sequence. Animation (C) 2010 Pearson Education, Inc. All rights reserved.
7
Animation Types (C) 2010 Pearson Education, Inc. All rights reserved.
8
// imsInfo.txt images o atomic.gif o balls.jpg o bee.gif o cheese.gif o eyeChart.gif o house.gif o pumpkin.png o scooter.gif o ufo.gif o owl.png n numbers*.gif 6 n figure*.gif 9 g fighter left.gif right.gif still.gif up.gif s cars.gif 8 s cats.gif 6 s kaboom.gif 6 o basn6a08.png o basn6a16.png (C) 2010 Pearson Education, Inc. All rights reserved. o n s g [ ]*
9
Strip file (C) 2010 Pearson Education, Inc. All rights reserved.
10
Swing Timer (C) 2010 Pearson Education, Inc. All rights reserved.
11
ImagePlayer (C) 2010 Pearson Education, Inc. All rights reserved.
12
Java Games
13
Runescape http://www.runescape.com/
14
Stellar Dawn http://www.stellardawn.com/
15
Wakfu http://www.wakfu.com/
16
Tribal Trouble 2 http://tribaltrouble2.com/
17
Pirate Galaxy http://us.pirategalaxy.net
18
Resistance Force http://www.resistanceforce.com/
19
Urban Galaxy http://www.urbangalaxyonline.com/
20
Poisenville http://www.poisonville.com/
21
Chrome http://www.techland.pl/?id=produkty&pro dukt=179
22
Wurm http://wurmonline.com/
23
Cell Invaders - TowerDefense http://www.krautsoft.vs241092.vserver.d e/virchow/index.html
24
Wezzle http://couchware.ca/www/wezzle/
25
CEPHEI - HOSTILE PLANET http://jalex.se/Cephei/bin/game.html
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.