Search:

Type: Posts; User: copeg

Search: Search took 0.08 seconds.

  1. [SOLVED] Re: unable to display BufferedImage with RGBA colorspace

    You are welcome. Glad to be of help. If all your questions have been answered, please mark this thread as solved (go to the top toolbar 'thread tools')
  2. [SOLVED] Re: unable to display BufferedImage with RGBA colorspace

    That is not what you are doing...the int values are not treated that way. With type INT_ARGB, each int value represents a pixel - an int is 32 bytes, the least significant 8 bits are blue, the most...
  3. [SOLVED] Re: unable to display BufferedImage with RGBA colorspace

    The loop sets every pixel value to alpha = 0, red = 0, green = 0, and blue = 50. You need to manipulate each pixel's four values (presuming an TYPE_INT_ARGB image type) to get the color you wish. The...
  4. [SOLVED] Re: unable to display BufferedImage with RGBA colorspace

    The BufferedImage has an alpha component, which your RGB values are setting to 0 (transparent). Set the alpha component to an appropriate value, or change the image type to exclude the alpha (for...
  5. [SOLVED] Re: unable to display BufferedImage with RGBA colorspace

    Can you post an SSCCE (and please use the code tags)?
Results 1 to 5 of 5