WICBitmap
MFC プログラムにイメージを含む があります。このビットマップをデバイス コンテキストに描画する方法はありますか?
void DrawBitmap(IWICBitmapSource source, HDC targetDC, int X, int Y, int cx, int cy)
{
//source: The Bitmap to draw
//TargetDC: The HDC to draw onto (e.g. a printer or screen DC)
//X,Y: The location on the DC to draw the bitmap
}