| 域名空间 下载中心 社区论坛 信息公告 MY小屋 |
![]() |
联系我们 设为首页 加入收藏 |
|
首页 | 新闻资讯 | 编程开发 | 网页设计 | 图形图象 | 网络媒体 | 网站模板 | 数 据 库 | 投稿 论坛 | 操作系统 | 系统优化 | 网络安全 | 黑客技术 | 硬件学堂 | 硬件报价 | 服 务 器 | 地图 专题 | 应用软件 | 聊天通讯 | Q Q 专栏 | 建站经验 | 在线工具 | 站长Club | 注 册 表 | 旧版 社会 | 游戏娱乐 | 设计欣赏 | 疑难解答 | 社区论坛 | 韩国素材 | 素材图库 | 广告服务 | 服务 |
| 新版上线![旧版] | |||||
注:打开慢时请稍等
VC中如何等比例缩放图像http://www.iyit.net 日期:2006-5-23 11:52:11 来源:本站整理转载 点击: |
在放大或缩小图像时,如何能最好的保持图像原态比例来显示呢?下面提供一个涵数可帮你来实现,调用它后,返回的矩形区域既为最佳显示图像大小。 涵数中的第一个参数rcScreen为图像要被显示的矩形大小,第二个参数sizePicture为图像自身大小,第三个参数bCenter为是否居中显示,返回值CRect既为图像最佳显示大小。 涵数如下所示: CRect RectSizeWithConstantRatio( CRect* rcScreen, CSize sizePicture, BOOL bCenter) { CRect rect(rcScreen); double dWidth = rcScreen->Width(); double dHeight = rcScreen->Height(); double dAspectRatio = dWidth/dHeight; double dPictureWidth = sizePicture.cx; double dPictureHeight = sizePicture.cy; double dPictureAspectRatio = dPictureWidth/dPictureHeight; //If the aspect ratios are the same then the screen rectangle // will do, otherwise we need to calculate the new rectangle if (dPictureAspectRatio > dAspectRatio) { int nNewHeight = (int)(dWidth/dPictureWidth*dPictureHeight); int nCenteringFactor = (rcScreen->Height() - nNewHeight) / 2; rect.SetRect( 0, nCenteringFactor, (int)dWidth, nNewHeight + nCenteringFactor); } else if (dPictureAspectRatio < dAspectRatio) { int nNewWidth = (int)(dHeight/dPictureHeight*dPictureWidth); int nCenteringFactor = (rcScreen->Width() - nNewWidth) / 2; rect.SetRect( nCenteringFactor, 0, nNewWidth + nCenteringFactor, (int)(dHeight)); } return rect; }; ? 此涵数的使用方法如下: { ……(部分省略) //得到屏幕大小 CRect rcScreen( 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN)); //得到图像尺寸 CSize sizePicture(picture.m_Width, picture.m_Height); CRect rcNewPictureRect = SizeRectWithConstantAspectRatio(&rcScreen, sizePicture, TRUE); picture.Show(&dc, rcNewPictureRect); } 编辑:黑鹰 [发送给好友] [打印本页] [关闭窗口] [返回顶部] 上一篇:如何禁止对话框关闭按钮和浮动工具条上的系统菜单 下一篇:windows编程通用的Win32类型和常见的结构 转载请注明来源:www.iyit.net 特别声明: 本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。 |
||||
| 最新更新 | 热点排行 | 推荐新闻 | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||
| 友情链接 | ||||||
| 设置首 页 - 版权声明 - 广告服务 - 关于我们 - 联系我们 - 友情连接 |
| |||||||