Graphics::D rawImage (Image*,constRect&) 方法 (gdiplusgraphics.h)
Graphics::D rawImage 方法會繪製影像。
語法
Status DrawImage(
[in] Image *image,
[in, ref] const Rect & rect
);
參數
[in] image
類型: 影像*
指定來源影像之 Image 物件的指標。
[in, ref] rect
類型: const Rect
系結影像繪圖區域的矩形參考。
傳回值
類型: 狀態
如果方法成功,它會傳回 Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其中一個其他元素。
備註
縮放影像來符合矩形。
範例
下列範例會繪製來源影像、系結重設大小影像的矩形,然後繪製重設大小的影像以符合矩形。
VOID Example_DrawImage9(HDC hdc)
{
Graphics graphics(hdc);
// Create an Image object.
Image image(L"climber.jpg");
// Create a Pen object.
Pen pen (Color(255, 255, 0, 0), 2);
// Draw the original source image.
graphics.DrawImage(&image, 10, 10);
// Create a Rect object that specifies the destination of the image.
Rect destRect(200, 50, 150, 75);
// Draw the rectangle that bounds the image.
graphics.DrawRectangle(&pen, destRect);
// Draw the image.
graphics.DrawImage(&image, destRect);
}
下圖顯示上述程式代碼的輸出。
規格需求
最低支援的用戶端 | Windows XP、Windows 2000 Professional [僅限傳統型應用程式] |
最低支援的伺服器 | Windows 2000 Server [僅限傳統型應用程式] |
目標平台 | Windows |
標頭 | gdiplusgraphics.h (包含 Gdiplus.h) |
程式庫 | Gdiplus.lib |
Dll | Gdiplus.dll |