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 포함) |
라이브러리 | Gdiplus.lib |
DLL | Gdiplus.dll |