Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3337324
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:14:22+00:00 2026-05-18T00:14:22+00:00

This should be simple but I’m having trouble changing some C code that uses

  • 0

This should be simple but I’m having trouble changing some C code that uses bitwise operators and shifts into Java.

In C I have:

unsigned short Color(byte r, byte g, byte b)
{
  return( ((unsigned short)g & 0x1F )<<10 | ((unsigned short)b & 0x1F)<<5 | (unsigned short)r & 0x1F);
}

This function, Color, returns 16bits where 15 of them represent three 5bit values for red, green, and blue color channels. I’m trying to do something similar in Java except I’m having trouble with data types.

In java I have:

int r=someval, g=anotherval, b=yetanotherval;

And I want to convert these integers to a 2byte data type and use the same bitwise/shift operations as above.

What is the best way to approach this? I was thinking of a 2byte array but that seems unnecessary.

edit

So I gave it a try in Java with shorts but there still seems to be an issue. I started simple with:

short r=someval, g=anotherval, b=yetanotherval;
short colorData = g & 0x001F;

But the compiler complains: “cannot convert from int to short”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T00:14:23+00:00Added an answer on May 18, 2026 at 12:14 am

    You have the short type in Java as well, but it’s always signed, there is no unsigned in Java.

    Therefore, it might be better to use an int, so you don’t need to use the sign bit to hold actual color data, which can be a bit (no pun intended!) confusing.

    This should work as a starting point, at least:

    int Color(int r, int g, int b)
    {
      return ((g & 0x1F) << 10) | ((b & 0x1F) << 5) | (r & 0x1F);
    }
    

    I made the arguments int as well, for simplicity’s sake.

    Update: It sounds (and seems) as if you can actually use short, since you only need 15 bits for the color format. Then let’s do that:

    short Color(short r, short g, short b)
    {
      return ((g & 0x1F) << 10) | ((b & 0x1F) << 5) | (r & 0x1F);
    }
    

    I haven’t tried compiling the above, but it’s likely that you’ll get conversion errors and will need to add explicit short casts throughout to make it compile.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I think this should be simple but I am having some difficulty implementing it.
This should be a really really simple thing, but for some reason it is
This should be simple but I can't find anywhere that tells me how to
I know this should be simple but can't figure it out. Here's the code.
I feel like this should be simple but I'm having issues getting it to
I know this should be simple and I should know it but it's eluding
This should be a simple question, but I haven't been able to find a
This should be simple but I'm a noob and I can't for the life
This should be simple but I can't figure it out <?php $testid = 240;
This should be simple but I cannot figure it out. I have this very

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.