CachedBitmap::CachedBitmap (constCachedBitmap&) 方法 (gdiplusheaders.h)

CachedBitmap 的复制构造函数。

语法

void CachedBitmap(
  const CachedBitmap & unnamedParam1
);

参数

unnamedParam1

要复制到此对象的 对象。

返回值

备注

可以通过将 CachedBitmap::CachedBitmap 对象的地址传递给 Graphics 对象的 DrawCachedBitmap 方法来显示缓存的位图。 使用传递给 CachedBitmap::CachedBitmap 构造函数的 Graphics 对象或其他表示同一设备的 Graphics 对象。

示例

以下示例基于 Bitmap 对象和 Graphics 对象创建 CachedBitmap::CachedBitmap 对象。 代码调用该 Graphics 对象的 DrawCachedBitmap 方法以显示缓存的位图。

VOID Example_CachedBitmap(HDC hdc)
{
   Graphics graphics(hdc);
   Bitmap bitmap(L"Grapes.jpg");
   CachedBitmap cachedBitmap(&bitmap, &graphics);

   graphics.DrawCachedBitmap(&cachedBitmap, 10, 10);  
}

要求

   
最低受支持的客户端 Windows XP、Windows 2000 Professional [仅限桌面应用]
最低受支持的服务器 Windows 2000 Server [仅限桌面应用]
目标平台 Windows
标头 gdiplusheaders.h (包括 Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

另请参阅

Bitmap

CachedBitmap

显卡

图像

使用缓存位图提高性能