码迷,mamicode.com
首页 > 其他好文 > 详细

VC图片裁剪源代码

时间:2019-11-23 23:56:44      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:atl   https   sdn   gif   图片裁剪   art   目标   一半   tps   

 1 #include <atlimage.h>
 2 
 3 
 4 int main()
 5 {
 6 
 7     CString filepathname = "D:\\1.png", filepathname1 = "D:\\11122.png";
 8     int width = 0, height = 0;
 9     CImage p_w_picpath, p_w_picpath1;
10     p_w_picpath.Load(filepathname); //加载图片  
11     width = p_w_picpath.GetWidth();
12     height = p_w_picpath.GetHeight();
13     p_w_picpath1.Create(840, 320, p_w_picpath.GetBPP()); // 创建一个目标存储对象 
14     p_w_picpath.BitBlt(p_w_picpath1.GetDC(), 0, 0, 840, 320, 20, 100, SRCCOPY);  //COPY原图的一半到目标对象里
15     p_w_picpath1.Save(filepathname1);  // 保存处理后的图片
16     p_w_picpath1.ReleaseDC();   // 释放资源
17     p_w_picpath1.Destroy();  // 销毁资源
18 
19 
20     return 0;
21 }
22 
23 caesar卢尚宇
24 2019年11月23日

技术图片

相关资料

https://blog.csdn.net/wanty_chen/article/details/80005233

VC图片裁剪源代码

标签:atl   https   sdn   gif   图片裁剪   art   目标   一半   tps   

原文地址:https://www.cnblogs.com/nxopen2018/p/11920450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!