如何用CreateBitmap创建一个位图
1个回答
2014-12-05 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:117538
获赞数:517204
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。
向TA提问 私信TA
关注
展开全部
void CTestBmpView::OnDraw(CDC* pDC)
{
CTestBmpDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
WORD a,b,c,d,e,f,g,h;
a = 0xff;
b = 0xff;
c = 0xff;
d = 0xff;
e = 0x00;
f = 0x00;
g = 0x00;
h = 0x11;
WORD HatchBits[8*8] = {
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h
};
// Use the bit pattern to create a bitmap.
CBitmap bm;
bm.CreateBitmap(8,8,1,8, HatchBits);
// Create a pattern brush from the bitmap.
CBrush brush;
brush.CreatePatternBrush(&bm);//因为,要创建一个和pDC格式相同的memdc,才能用biblt,
//所以,我把这段msdn上的程序修改了一下。用了8位的,msdn上面是单色的。
// Select the brush into a device context, and draw.
CBrush* pOldBrush = (CBrush*)pDC->SelectObject(&brush);
pDC->RoundRect(CRect(50, 50, 200, 200), CPoint(10,10));
// Restore the original brush.
pDC->SelectObject(pOldBrush);
}
{
CTestBmpDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
WORD a,b,c,d,e,f,g,h;
a = 0xff;
b = 0xff;
c = 0xff;
d = 0xff;
e = 0x00;
f = 0x00;
g = 0x00;
h = 0x11;
WORD HatchBits[8*8] = {
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h,
a, b, c, d, e,f, g, h
};
// Use the bit pattern to create a bitmap.
CBitmap bm;
bm.CreateBitmap(8,8,1,8, HatchBits);
// Create a pattern brush from the bitmap.
CBrush brush;
brush.CreatePatternBrush(&bm);//因为,要创建一个和pDC格式相同的memdc,才能用biblt,
//所以,我把这段msdn上的程序修改了一下。用了8位的,msdn上面是单色的。
// Select the brush into a device context, and draw.
CBrush* pOldBrush = (CBrush*)pDC->SelectObject(&brush);
pDC->RoundRect(CRect(50, 50, 200, 200), CPoint(10,10));
// Restore the original brush.
pDC->SelectObject(pOldBrush);
}
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询