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

  • SEARCH
  • Home
  • 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 7438745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:36:08+00:00 2026-05-29T10:36:08+00:00

I’m using Visual Studio 2010, C++. What I’m trying to do is retrieve pixel

  • 0

I’m using Visual Studio 2010, C++.

What I’m trying to do is retrieve pixel data (RGB colour specifically) from a loaded image and then use that in various checks. Currently, I want to loop through all the data and be able to detect when a pixel is a certain colour (specific R, G and B values).

I should note that I’m using DevIL, and I’d prefer to keep using DevIL (I’ve seen a bunch of suggestions to do with other tools that help with image processing).

Right now, as I understand it, the DevIL function ilgetData() retrieves a pointer that has all the RGB values of all the pixels in a single dimensional array of bytes. I don’t know how to store the data gotten using this function and then to use it in a for loop.

Example code is much appreciated.

  • 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-29T10:36:09+00:00Added an answer on May 29, 2026 at 10:36 am

    The correct way to store the return of ilGetData() is in an IL unsigned byte array.

    For example

    ILubyte * bytes = ilGetData();
    

    To iterate over it in a for loop you use

      for(int i = 0; i < size; i++)
      {
        // Print out each ILubyte one at time
        printf("%d\n", bytes[ i ]);
      }
    

    What you probably want is a for loop that prints or does something else with the RGB values at given pixel for all pixels in the image. As Bart pointed out the ordering below is for IL_RGBA or RGBA format. If you use IL_RGB then the 4 becomes a 3, and if you use IL_BGR or IL_BGRA then red and blue values need to be switched as expected.

    ILuint width,height;
    width = ilGetInteger(IL_IMAGE_WIDTH);
    height = ilGetInteger(IL_IMAGE_HEIGHT);
    
    for (int i = 0; i < height; i++)
    {
       for (int j = 0; j < width; j++)
       {
          printf( "%s\n", "Red Value for Pixel");
          printf( "%d\n", bytes[(i*width + j)*4 + 0]); 
          printf( "%s\n", "Green Value for Pixel");
          printf( "%d\n", bytes[(i*width + j)*4 + 1]);
          printf( "%s\n", "Blue Value for Pixel");
          printf( "%d\n", bytes[(i*width + j)*4 + 2]);
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
Specifically, suppose I start with the string string =hello \'i am \' me And
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I am currently running into a problem where an element is coming back from

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.