如何打开BMP位图读取每个像素点的RGB做成数组
发表在C语言图书答疑 2014-03-17
是否精华
版块置顶:
明日科技各位专家:
    帮个忙,如何打开BMP位图读取每个像素点的RGB做成数组。谢谢!
   邮箱:sz_qjp@126.com
分享到:
精彩评论 2
sz_Ivan
学分:0 LV1
TA的每日心情
奋斗
2020-05-27 21:09:51
2014-04-01
沙发
没有人理偶
学分: LV1
TA的每日心情
开心
2020-06-16 09:16:38
2014-04-04
板凳
  BITMAP m_bmp;
  CBitmap m_bitmap;
读取 1.bmp 到内存:
BOOL CYourClassName::Read1bmp()
{
    HBITMAP hBitmap = (HBITMAP)::LoadImage(NULL, _T("1.bmp"), IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);

    if (NULL == hBitmap || !m_bitmap.Attach(hBitmap))
    {
        MessageBox(_T("1.bmp 读取失败。"));
        return FALSE;
    }

    if (!m_bitmap.GetBitmap(&m_bmp) || 32 != m_bmp.bmBitsPixel)
    {
        MessageBox(_T("转成 32bit 的位图。"));
        return FALSE;
    }

    DWORD count = m_bmp.bmWidth * m_bmp.bmHeight;
    m_bmp.bmBits = new DWORD [count];

    if (NULL == m_bmp.bmBits)
    {
        MessageBox(_T("申请内存失败。"));
        OnCancel();
    }

    m_bitmap.GetBitmapBits(count * sizeof(DWORD), m_bmp.bmBits);
}

这样就都在 m_bmp.bmBits 里了。
然后用这个函数读:

DWORD CYourClassName::GetColorDWORD(const CPoint & point)
{
    DWORD index = point.x * m_bmp.bmBitsPixel / 8 + point.y * m_bmp.bmWidthBytes;
    DWORD realColor = *reinterpret_cast<DWORD*>((BYTE*)m_bmp.bmBits + index);
    return realColor;

首页上一页 1 下一页尾页 2 条记录 1/1页
手机同步功能介绍
友情提示:以下图书配套资源能够实现手机同步功能
明日微信公众号
明日之星 明日之星编程特训营
客服热线(每日9:00-17:00)
400 675 1066
mingrisoft@mingrisoft.com
吉林省明日科技有限公司Copyright ©2007-2022,mingrisoft.com, All Rights Reserved长春市北湖科技开发区盛北大街3333号长春北湖科技园项目一期A10号楼四、五层
吉ICP备10002740号-2吉公网安备22010202000132经营性网站备案信息 营业执照