Search:

Type: Posts; User: KAJLogic

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    1,057

    [SOLVED] Re: Messing with alpha

    Yes I ended up using a WritableRaster to change the alpha. It is my understanding that BufferedImage alone has no ability to change alpha, only the RGB values. And, yes copeg bi was bufferedImage, I...
  2. Replies
    3
    Views
    1,057

    [SOLVED] Messing with alpha

    I am using something a kin to this:


    for (int w=0;w<bi.getWidth();w++) {
    for (int h=0;h<bi.getHeight();h++) {
    int color = bi.getRGB(w, h);
    ...
Results 1 to 2 of 2