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 (408)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Manipulating the Alpha Raster  (Read 1883 times)
0 Members and 1 Guest are viewing this topic.
Offline ghostsoldier23

Junior Member


Medals: 1



« Posted 2012-01-11 21:22:43 »

I'm bit confused on the proper method to manipulating the AlphaRaster directly on a TYPE_INT_ARGB BufferedImage.  Setting the data values individually seems to have no effect.

I believe AlphaComposite can also be used for this purpose... but I don't how to do that either.

If anyone could explain it, it would be greatly appreciated.

NOTE:  Just noticed I accidentally put this in Game Play & Design... that was completely unintentional.  If a mod wants to move it that's fine.
Offline nicephotog

JGO Visitor




« Reply #1 - Posted 2012-05-19 05:47:23 »

There are two types of ARGB true colour.
One uses a "float" in the raster
the second type of ARGB use 0-255 inclusive to set the opacity.
By completeness that's four(different values of the "static field constant" for BufferedImage type) types of true colour Alpha image.
"Pre" means one byte of  alpha information is there for the whole/complete set of pixels.
so:
pre with "float(one??? 8 bit byte)" or "float
  • [y] as an alpha raster"
pre with "int(one??? 8 bit byte)"  or "int
  • [y]  as an alpha raster
*Huh i'm not sure how the single value for the opacity(alpha value) setting is stored in the header or inside the runtime engine under the common image spec(doesn't actually matter).

An alpha raster you can obtain from a buffered image.
AlphaComposite class is mostly for getting two images and combining the pixels(blending) by a set of rules as stated in the API docs.
Offline matheus23

JGO Wizard


Medals: 72
Projects: 3


You think about my Avatar right now!


« Reply #2 - Posted 2012-05-20 10:58:23 »

AlphaComposite will do everything you want Wink

From an not-so-old LD project (LD #23):

1  
2  
3  
   public void render(Graphics2D g) {
      AlphaComposite c = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1f);
      g.setComposite(c);


That's how I used it, to create a "night"-Effect. I just rendered a Rectangle over the scene after drawing the scene itself:
1  
2  
      g.setColor(new Color(0f, 0f, 0f, 1f-brightness));
      g.fillRect(0, 0, canvas.getWidth(), canvas.getHeight());


And thats almost everything, how to use it. Just keep sure, you draw everything in the right order Smiley

See my:
    My development Blog:     | Or look at my RPG | Or simply my coding
http://matheusdev.tumblr.comRuins of Revenge  |      On Github
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

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 (102 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (206 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.167 seconds with 21 queries.