标签: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
标签:atl https sdn gif 图片裁剪 art 目标 一半 tps
原文地址:https://www.cnblogs.com/nxopen2018/p/11920450.html