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 182937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T15:01:40+00:00 2026-05-11T15:01:40+00:00

I’m trying to get ARGB components from CGBitmapContext with the following codes: -(id) initWithImage:

  • 0

I’m trying to get ARGB components from CGBitmapContext with the following codes:

 -(id) initWithImage: (UIImage*) image   //create BitmapContext with UIImage and use 'pixelData' as the pointer {          CGContextRef    context = NULL;         CGColorSpaceRef colorSpace;         int             bitmapByteCount;         int             bitmapBytesPerRow;          bitmapBytesPerRow   = (image.size.width * 4);                                bitmapByteCount     = (bitmapBytesPerRow * image.size.height);          colorSpace = CGColorSpaceCreateDeviceRGB();                                  pixelData = malloc( bitmapByteCount );      //unsigned char* pixelData is defined in head file         context = CGBitmapContextCreate (pixelData,                                                  image.size.width,                         image.size.height,                         8,    // bits per component                         bitmapBytesPerRow,                         colorSpace,                         kCGImageAlphaPremultipliedFirst                         );         CGColorSpaceRelease( colorSpace );                                            CGContextDrawImage(context, CGRectMake(0, 0, image.size.width, image.size.height), image.CGImage);         pixelData = CGBitmapContextGetData(context);         return self; } 

 -(float) alphaAtX:(int)x y:(int)y   //get alpha component using the pointer 'pixelData'  {     return pixelData[(y *width + x) *4 + 3];    //+0 for red, +1 for green, +2 for blue, +3 for alpha }

-(void)viewDidLoad { [super viewDidLoad]; UIImage *img = [UIImage imageNamed:@'MacDrive.png']; //load image

[self initWithImage:img];   //create BitmapContext with UIImage float alpha = [self alphaAtX:20 y:20];  //store alpha component 

}

When I try to store red/green/blue, they turn out to be always 240. And alpha is always 255.

So I think maybe something is wrong with the pointer. It could not return the correct ARGB data I want. Any ideas about what's wrong with the code?

  • 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. 2026-05-11T15:01:41+00:00Added an answer on May 11, 2026 at 3:01 pm

    First of all, you’re leaking memory, the pixelData memory never gets freed.

    For your usage, it’s better to let the CGContext calls manage the memory. Simply pass NULL i.s.o. pixelData, and as long as you keep the reference count up on your context, the CGBitmapContextGetData(context) will remain valid.

    You’re using alpha as if it was the last entry (RGBA, not ARGB), use it as such in the creation of your context, or adapt the alphaAtX code. I’m not sure if you want premultiplied, if it’s just to check alpha values, you don’t.

    All in all something like:

    [...] CGContextRelease(context); context = CGBitmapContextCreate (NULL,                                                                                          image.size.width,                                     image.size.height,                                     8,    // bits per component                                     bitmapBytesPerRow,                                     colorSpace,                                     kCGImageAlphaLast                                     ); CGColorSpaceRelease( colorSpace );                                                                        CGContextDrawImage(context, CGRectMake(0, 0, image.size.width, image.size.height), image.CGImage); pixelData = CGBitmapContextGetData(context); [...] 

    with context being a member variable, initialized to NULL, will already be a step in the right direction.

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

Sidebar

Ask A Question

Stats

  • Questions 173k
  • Answers 173k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You need to add something like Trie* parent; or Trie*… May 12, 2026 at 2:41 pm
  • Editorial Team
    Editorial Team added an answer What happens if you change thumbsMov.traceText.defaultTextFormat = a12Green; to thumbsMov.traceText.setTextFormat(a12Green); May 12, 2026 at 2:41 pm
  • Editorial Team
    Editorial Team added an answer If you want to add two items to the cart… May 12, 2026 at 2:41 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.