I have a CBitmap object “m_bmp”. I need to convert this to a CxImage Object. Any ideas? Is there any direct conversion from bitmap object to other types available from CxImage?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
m_Img.CreateFromHBITMAP((HBITMAP)m_bmp.m_hObject);m_Img is a CxImage Object. After initializing the device context to draw to “m_bmp”, the CreateFromHBITMAP function is called.