vote up 0 vote down star

hi,

i am reading a 24bpp bitmap , and i need to convert each pixel from RGB24 to ARGB16.

i am using this :

#define ARGB16(a, r, g, b) ( ((a) << 15) | (r)|((g)<<5)|((b)<<10))

but the output it's not what i need, can someone offer some help ? thank you.

flag
How are you using the macro? – pierr Oct 12 at 9:14
1  
The documentation on devkitpro.org/libnds/a00106.html states that only 5-bit color values are to be used. Truncate the 8-bit values by (x >> 3) before using the macro. Also only use 1 or 0 as alpha value (1-bit). – Frank Bollack Oct 12 at 9:45

6 Answers

vote up 1 vote down

Since the RGB values are probably 8 bits each, you still need to truncate them to five bits so they won't "overlap" in the ARGB16 value.

The easiest way to truncate them is probably to bitshift them to the right by three places.

link|flag
vote up 1 vote down

Break it up. Let's continue to use macros:

#define TRUNCATE(x)  ((x) >> 3)

#define ARGB16(a,r,g,b) ((a << 15) | (TRUNCATE(r) << 10) | (TRUNCATE(g) << 5) | TRUNCATE(b)))

This assumes the alpha is just a single bit.

link|flag
vote up 0 vote down

It looks to me like you probably want to mask off the bits you don't need from r, g and b. Maybe something like this:

#define ARGB16(a, r, g, b) ( ((a) << 15) | (r>>3)|((g>>3)<<5)|((b>>3)<<10))

Edit: whoops, I think the answer by Michael Buddingh is probably right - you'll want to shift off, this gets you the most significant bits.

link|flag
vote up 0 vote down

I would either use a bitmask to get rid of the bits you don't need: (colorvalue & 0x1F).

Either shift the color value to the right 3 bits (seems like the better option).

And is a << 15 really what you need? You would be relying on the fact that the 0 bit is 0 or 1 to set the alpha bit on or off. So if your alpha value is 0xFE then the alpha bit would 0, whereas if it were 0x01 it would be 1.

link|flag
vote up 0 vote down

You might to want to SCALE rather than TRUNCAT.

Take R component for example , 0xDE(222) in 24bit RGB will become 0x1A = (222.0/0xFF)*0x1F in 16bit RGB.

link|flag
vote up 0 vote down

i have the code bellow :

    FILE *inFile;
BmpHeader header;
BmpImageInfo info;
Rgb *palette;
int i = 0;

    inFile = fopen( "red.bmp", "rb" );

fread(&header, 1, sizeof(BmpHeader), inFile);
fread(&info, 1, sizeof(BmpImageInfo), inFile);

palette = (Rgb*)malloc(sizeof(Rgb) * info.numColors);

fread(palette, sizeof(Rgb), info.numColors, inFile);

unsigned char buffer[info.width*info.height];

FILE *outFile = fopen( "red.a", "wb" );
Rgb *pixel = (Rgb*) malloc( sizeof(Rgb) );

int read, j;

for( j=info.height; j>0; j-- ) 
{
	for( i=0; i<info.width; i++ ) 
	{
		fread(pixel, 1, sizeof(Rgb), inFile);
		buffer[i] = ARGB16(0, pixel->red, pixel->green, pixel->blue);
	}
}

    fwrite(buffer, 1, sizeof(buffer), outFile);

and i am reading a red image(255 0 0), and i am using the function defined by you above(#define ARGB16(a, r, g, b) ( ((a) << 15) | (r>>3)|((g>>3)<<5)|((b>>3)<<10)) ), but the output file shows me : 1F 1F 1F when i am opening the file with a hexaeditor instead of 7C00 ..

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.