Click here to Skip to main content
15,881,866 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi everybody,

I am some what weak in pointer concept so can any body tell me why is below error is come into picture.

error C2664: 'Gdiplus::Bitmap::LockBits' : cannot convert parameter 1 from 'Gdiplus::Rect' to 'const Gdiplus::Rect *'

I am doing as below
C++
    BitmapData bmData;
Rect rect(0, 0, width, height);

b->LockBits(rect,
    ImageLockModeRead,
    PixelFormat32bppARGB,
    &bmData);


and b is the object of type bitmap
C++
Bitmap *b


Please tell me how to resolve this

Thanks
Posted
Comments
nv3 8-Jul-13 4:55am    
b->LockBits(&rect,
Vaibhav_J_Jaiswal 8-Jul-13 5:28am    
Thanks it resolved

1 solution

Reading the error message properly will tell you how to correct it most of the time.

From the error message you can see that it is trying to convert the Rect to a Rect pointer.
Now from the documentation you can see that the expected first parameter is a pointer to a Rect.
So you simple return the address of the Rect.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900