Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (404)
games submitted by our members
Games in WIP (289)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
   Home   Help   Search   Login   Register   
  Show Posts
Pages: [1]
1  Java Game APIs & Engines / Java 2D / Rendering process on: 2005-03-14 06:27:20
May i know why doesn't the image appear one by one similar to a photo mosaic rendering by using the method below?

     public void paint(Graphics g)
     {
           
                 try
                 {
                       Graphics2D g2 = (Graphics2D) g;
                       float alphaVal;
                       AlphaComposite ac;
                 
                       RenderingHints rh = g2.getRenderingHints();
                       rh.put(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
                 
                       g2.setRenderingHints(rh);
           
                       String filename = "c:/images/church.jpg";
                 
                       Image img = getToolkit().getImage(filename);
                       
                       // the position of the image
                       AffineTransform aTran = new AffineTransform();
                       aTran.translate(1f, 1f);
                       g2.transform(aTran);
                       
                       //alpha blending when two or more images are blended together
                       alphaVal = alpha;
                       ac = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alphaVal);
                       g2.setComposite(ac);
                       g2.drawImage(img, new AffineTransform(), this);
                 
                 }
                 catch(Exception e)
                 {}
     
                 Graphics2D g2 = (Graphics2D)g;
                 int w = getWidth();
                 int h = getHeight();
                 int imageWidth, imageHeight;
                 int totalHeight = 84;
                 int totalWidth = 600;
                 int x = 0;
                 int y = 0;
                 float alphaVal;
                 AlphaComposite ac;
                 //int j=0;
                       
                 for(int j=0; j<images.length; j++)
                 {
                       imageWidth = images[j].getWidth();
                       imageHeight = images[j].getHeight();
                 
                       if ((j % 5) == 0)
                       {
                   
                                //x and y axis
                            /*To be able to display all the small images accordingly, need translate (x,y).
                           *Use for loop.*/
                                AffineTransform aTran = new AffineTransform();
                                aTran.translate(0.5f, 0.5f);
                                g2.transform(aTran);
                 
                                // reset x for next row (indeed, even for first row) to be at the
                                // first column of this row
                                x = 0;
                                // increment y to go to the next row
                                y += 84;
                       }
                       
                       x += 122; // same as x = x + 122
                 
                       if(j == 0)
                             alphaVal = alpha;
                       else
                             alphaVal = 1.0f - alpha;
                             ac = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alphaVal);
                             g2.setComposite(ac);
                             g2.drawImage(images[j], x, y, this);
           
                 }
                       
     }
Pages: [1]
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (33 views)
2013-05-17 21:29:12

alaslipknot (42 views)
2013-05-16 21:24:48

gouessej (72 views)
2013-05-16 00:53:38

gouessej (71 views)
2013-05-16 00:17:58

theagentd (79 views)
2013-05-15 15:01:13

theagentd (74 views)
2013-05-15 15:00:54

StreetDoggy (114 views)
2013-05-14 15:56:26

kutucuk (138 views)
2013-05-12 17:10:36

kutucuk (138 views)
2013-05-12 15:36:09

UnluckyDevil (146 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.106 seconds with 21 queries.