扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
void CEx_Prn1View::SetPageMargin(CDC *pDC, CPrintInfo *pInfo, int l, int t, int r, int b) // l, t, r, b分别表示左上右下边距, 单位为0.1mm { int nOldMode = pDC->GetMapMode(); pDC->SetMapMode(MM_LOMETRIC); // 计算一个设备单位等于多少0.1mm double scaleX = 254.0 / (double)GetDeviceCaps( pDC->m_hAttribDC, LOGPIXELSX); double scaleY = 254.0 / (double)GetDeviceCaps( pDC->m_hAttribDC, LOGPIXELSY); int x = GetDeviceCaps(pDC->m_hAttribDC, PHYSICALOFFSETX); int y = GetDeviceCaps(pDC->m_hAttribDC, PHYSICALOFFSETY); int w = GetDeviceCaps(pDC->m_hAttribDC, PHYSICALWIDTH); int h = GetDeviceCaps(pDC->m_hAttribDC, PHYSICALHEIGHT); int nPageWidth = (int)((double)w*scaleX + 0.5); // 纸宽,单位0.1mm int nPageHeight = (int)((double)h*scaleY + 0.5); // 纸高,单位0.1mm m_nPhyLeft = (int)((double)x*scaleX + 0.5); // 物理左边距,单位0.1mm m_nPhyTop = (int)((double)y*scaleY + 0.5); // 物理上边距,单位0.1mm pDC->DPtoLP(&pInfo->m_rectDraw); CRect rcTemp = pInfo->m_rectDraw; rcTemp.NormalizeRect(); m_nPhyRight = nPageWidth - rcTemp.Width() - m_nPhyLeft; // 物理右边距,单位0.1mm m_nPhyBottom = nPageHeight - rcTemp.Height() - m_nPhyTop; // 物理下边距,单位0.1mm // 若边距小于物理边距,则调整它们 if (l < m_nPhyLeft) l = m_nPhyLeft; if (t < m_nPhyTop) t = m_nPhyTop; if (r < m_nPhyRight) r = m_nPhyRight; if (b < m_nPhyBottom) b = m_nPhyBottom; // 计算并调整pInfo->m_rectDraw的大小 pInfo->m_rectDraw.left = l - m_nPhyLeft; pInfo->m_rectDraw.top = - t + m_nPhyTop; pInfo->m_rectDraw.right -= r - m_nPhyRight; pInfo->m_rectDraw.bottom += b - m_nPhyBottom; pDC->LPtoDP(&pInfo->m_rectDraw); pDC->SetMapMode(nOldMode); // 恢复原来的映射模式 } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者