如何将 OCX 绘制到 CBitmap(MFC、C++)
How to draw an OCX to a CBitmap (MFC, c++)
如何将 OCX(我有源代码)绘制到 CBitmap 对象或类似对象?
背景:我的客户创建了 PDF 文档,这些文档的一部分是 OCX 的输出。 PDF-lib-Interface 有一种方法可以将图像从 CBitmap-Object 放入 PDF-Page。
所以我想做的是让程序创建一个 CBitmap 对象,将其传递给 OCX 以让它在其上绘制内容,然后将 CBitmap 传递给 PDF 库以将其放入文档中。
所以主要问题是:如何将我的 ocx 绘制到 CBitmap 对象中?
我正在使用 Visual C++,Windows,MFC/ATL。
非常感谢
实际上我没有设法将 OXC 渲染为 CBitmap
(只是绘制了一个黑框)而是渲染为 ATL::CImage
并从中制作了 CBitmap
工作:
ATL::CImage* CPrnBasePrinter::DrawBeamerToImage(CSPCListView* pListViewWithBeamer, const CRect& rect4Beamer)
{
ASSERT(pListViewWithBeamer != nullptr);
auto* pRetVal = new CImage();
pRetVal->Create(rect4Beamer.Width(), rect4Beamer.Height(), 24);
HDC hdcImage = pRetVal->GetDC();
//Draw Control to CImage
pListViewWithBeamer->DrawBeamerToDC(HandleToLong(hdcImage),
rect4Beamer.left, rect4Beamer.top, rect4Beamer.right, rect4Beamer.bottom);
pRetVal->ReleaseDC();
return pRetVal;
}
void CPrnBasePrinter::DrawImageFromCImage(
const ATL::CImage* pImage, const CRect& rect) const
{
CBitmap* pbmp2Print = CBitmap::FromHandle(*pImage);
// Get the size of the bitmap
BITMAP bmpInfo;
pbmp2Print->GetBitmap(&bmpInfo);
//virtual - Draws the CBitmap to an Printer-DC or a PDF-Document
DrawImageFromLoadedBitmap(pbmp2Print, &bmpInfo, rect);
}
void CPrnBasePrinter::Draw()
{
//m_pListviewDataSource is an OCX capable of drawing itself into a given DC
ATL::CImage* pBeamerImage = DrawBeamerToImage(m_pListviewDataSource, CRect(0, 0, 100, 50));
if (pBeamerImage != nullptr){
DrawImageFromCImage(pBeamerImage, CRect(0, 0, 100, 50));
delete pBeamerImage;
}
}
如何将 OCX(我有源代码)绘制到 CBitmap 对象或类似对象?
背景:我的客户创建了 PDF 文档,这些文档的一部分是 OCX 的输出。 PDF-lib-Interface 有一种方法可以将图像从 CBitmap-Object 放入 PDF-Page。 所以我想做的是让程序创建一个 CBitmap 对象,将其传递给 OCX 以让它在其上绘制内容,然后将 CBitmap 传递给 PDF 库以将其放入文档中。 所以主要问题是:如何将我的 ocx 绘制到 CBitmap 对象中?
我正在使用 Visual C++,Windows,MFC/ATL。 非常感谢
实际上我没有设法将 OXC 渲染为 CBitmap
(只是绘制了一个黑框)而是渲染为 ATL::CImage
并从中制作了 CBitmap
工作:
ATL::CImage* CPrnBasePrinter::DrawBeamerToImage(CSPCListView* pListViewWithBeamer, const CRect& rect4Beamer)
{
ASSERT(pListViewWithBeamer != nullptr);
auto* pRetVal = new CImage();
pRetVal->Create(rect4Beamer.Width(), rect4Beamer.Height(), 24);
HDC hdcImage = pRetVal->GetDC();
//Draw Control to CImage
pListViewWithBeamer->DrawBeamerToDC(HandleToLong(hdcImage),
rect4Beamer.left, rect4Beamer.top, rect4Beamer.right, rect4Beamer.bottom);
pRetVal->ReleaseDC();
return pRetVal;
}
void CPrnBasePrinter::DrawImageFromCImage(
const ATL::CImage* pImage, const CRect& rect) const
{
CBitmap* pbmp2Print = CBitmap::FromHandle(*pImage);
// Get the size of the bitmap
BITMAP bmpInfo;
pbmp2Print->GetBitmap(&bmpInfo);
//virtual - Draws the CBitmap to an Printer-DC or a PDF-Document
DrawImageFromLoadedBitmap(pbmp2Print, &bmpInfo, rect);
}
void CPrnBasePrinter::Draw()
{
//m_pListviewDataSource is an OCX capable of drawing itself into a given DC
ATL::CImage* pBeamerImage = DrawBeamerToImage(m_pListviewDataSource, CRect(0, 0, 100, 50));
if (pBeamerImage != nullptr){
DrawImageFromCImage(pBeamerImage, CRect(0, 0, 100, 50));
delete pBeamerImage;
}
}