Here is answer if somebody whant in: void CtestView::OnPrint(CDC* pDC, CPrintInfo* pInfo) { int cxPage = pDC->GetDeviceCaps(HORZRES); int cyPage = pDC->GetDeviceCaps(VERTRES); Graphics g(pDC->m_hDC); g.SetPageUnit(UnitInch); g.DrawImage(m_pBitmap, 0, 0, cxPage/g.GetDpiX() , cyPage/g.GetDpiX() ); }