gpt4 book ai didi

c++ - 将图像从 CDC 传输到 CBitmap

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:27:16 26 4
gpt4 key购买 nike

如何将图像从 CDC 传输到 CBitmap?整体问题:我在 CBitmap A 中有一个大图像。我需要将此图像的一部分传输到多个 CBitmap 以存储到 vector 中,因为我不能为此使用多个 CDC :)我将准备好的 CDC 制作成一个循环(获得 CBitmap A 的必要部分),然后我需要将它传输到 CBitmap x。我该怎么做?

这是我的代码:

m_bitmaps.clear();
m_bitmaps.reserve(4);

CDC SourceDC, destDC;
SourceDC.CreateCompatibleDC(pMainDC);
destDC.CreateCompatibleDC(pMainDC);

CBitmap bmpWhole; // bmp 200*200
bmpWhole.LoadBitmap(IDB_TEST_BITMAP);
SourceDC.SelectObject(&bmpWhole);

//pMainDC->BitBlt(0,0,200,200,&SourceDC,0,0,SRCCOPY);

//没关系 - 我有源图片

for (int x=100; x>=0; x-=100)
for (int y=100; y>=0; y-=100)
{
CBitmap *destBitmap = new CBitmap();
destBitmap->CreateCompatibleBitmap(&destDC, 100, 100);

CBitmap *oldBitmap = destDC.SelectObject(destBitmap);

destDC.BitBlt(0,0,100,100,&SourceDC,x,y,SRCCOPY);

pMainDC->BitBlt(x*1.1,y*1.1,100,100,&destDC,0,0,SRCCOPY);

//我这里有黑色方 block ! - 之前的代码有问题

        m_bitmaps.push_back(destBitmap);

destDC.SelectObject(oldBitmap);
}

bmpWhole.DeleteObject();
destDC.DeleteDC();
SourceDC.DeleteDC();

//后面的CBitmaps都是黑色方 block


我找到了解决方案!

解析CBitmap并初始化 vector

m_bitmaps.clear();
m_bitmaps.reserve(4);

CDC SourceDC, destDC;
SourceDC.CreateCompatibleDC(pMainDC);

CBitmap bmpWhole;
bmpWhole.LoadBitmap(IDB_TEST_BITMAP);
SourceDC.SelectObject(&bmpWhole);

for (int x=100; x>=0; x-=100)
for (int y=100; y>=0; y-=100)
{
CImage *destImage = new CImage();
destImage->Create(100, 100, 24);

destDC.Attach(destImage->GetDC());
destDC.BitBlt(0,0,100,100,&SourceDC,x,y,SRCCOPY);
destDC.Detach();
destImage->ReleaseDC();

m_bitmaps.push_back(destImage);
}

bmpWhole.DeleteObject();
destDC.DeleteDC();
SourceDC.DeleteDC();

绘制:

WORD nShift=0;
for (auto iter = m_bitmaps.begin(); iter != m_bitmaps.end(); ++iter, nShift+=110)
{
CBitmap* pBitmap = CBitmap::FromHandle((*iter)->operator HBITMAP());

CDC memDC;
memDC.CreateCompatibleDC(pMainDC);
memDC.SelectObject(pBitmap);
pMainDC->BitBlt(nShift, 0, 100, 100, &memDC, 0, 0, SRCCOPY);
}

最佳答案

创建另一个设备上下文,一个接一个地创建目标位图并将其选择到其中,然后使用 BitBlt 将部分源位图复制到其中。以下是您如何执行此操作的示例。

// Create a DC compatible with the display
// this is used to copy FROM the source bitmap
sourceDC.CreateDC(NULL);
sourceDC.SelectObject(&sourceBitmap);

// Create another device context for the destination bitmap
destDC.CreateCompatibleDC(&sourceDC);
for(int i = 0; i < numBitmaps; i++)
{
// Determine the x, y, sourceX, sourceY, with and height here
// ...

// create a new bitmap
CBitmap *destBitmap = new CBitmap();
destBitmap->CreateCompatibleBitmap(&destDC, width, height);
// Select the bitmap into the destination device context
CBitmap *oldBitmap = destDC.SelectObject(destBitmap);

// copy the bitmap
destDC.BitBlt(x, y, width, height, &sourceDC, sourceX, sourceY, SRCCOPY);

// add it to the vector
bitmapVector.push_back(destBitmap);

// Clean up
destDC.SelectObject(oldBitmap);
}

为简单起见,我省略了错误检查。如果您使用的是 C++11 或 Boost,我建议您使用 unique_ptr 来管理位图对象的生命周期。否则,您需要在适当的地方(例如析构函数)删除它。

关于c++ - 将图像从 CDC 传输到 CBitmap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17416152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com