怎么做app下载网站,沈阳企业网站建设,网络营销课程思政,wordpress明星主题文章目录 Windows反截屏开发实现1. SetWindowDisplayAffinity2. 反截屏系统3. 总结 Windows反截屏开发实现
最近在我们云桌面中需要做到反截屏能力#xff0c;所谓反截屏就是我们无法通过截图软件#xff08;微信#xff0c;QQ#xff0c;截图等程序#xff09;截取桌面的… 文章目录 Windows反截屏开发实现1. SetWindowDisplayAffinity2. 反截屏系统3. 总结 Windows反截屏开发实现
最近在我们云桌面中需要做到反截屏能力所谓反截屏就是我们无法通过截图软件微信QQ截图等程序截取桌面的内容。在Windows下面我们通过如下步骤来截图
通过GetDC或者CreateDC来获取DC。通过CreateCompatibleDC创建内存DC。通过BitBlt/StretchBlt将屏幕DC的内容拷贝到内存DC中。我们将DC的位图提取出来就完成了截图。
要做到反截屏一般有两种方式来实现
通过设置属性是的第三方软件无法获取到窗口的内容。对截图的行为进行拦截例如CreateCompatibleDC或者BitBlt/StretchBlt等。
接下来分别对两种情况来进行处理。
1. SetWindowDisplayAffinity
SetWindowDisplayAffinity该函数设置窗口的显示属性该函数如下
BOOL SetWindowDisplayAffinity(HWND hWnd,DWORD dwAffinity
);对于dwAffinity可以取值如下
WDA_MONITOR设置窗口只在显示器上面显示我们从内存DC中那窗口的内容的话得到的是空的。WDA_NONE移除只在显示器上面显示的标记属性。
其实还有一个标记WDA_EXCLUDEFROMCAPTURE专门是为截图设计的当设置这个标记的时候就会导致该窗口截图的时候透明。
该函数是在DWM窗口合成中完成的因此需要在DWM开启的情况下才能生效我们可以大致实现如下
void CWindowAffinityDlg::OnBnClickedButtonWdaMonitor()
{WCHAR wszWndName[MAX_PATH] { 0 };GetDlgItemTextW(IDC_EDIT_WND_NAME, wszWndName, _countof(wszWndName));HWND hWnd ::FindWindowW(NULL, wszWndName);if (hWnd NULL){return;}SetWindowDisplayAffinity(hWnd, WDA_MONITOR);
}在正常的情况下我们看到的截图效果如下
设置WDA_MONITOR之后我们的效果如下
如果设置WDA_EXCLUDEFROMCAPTURE截图的效果如下 可以看到通过SetWindowDisplayAffinity可以对当前窗口进行处理防止被别人截图。但是SetWindowDisplayAffinity有一个限制只能够设置本进程的窗口无法设置其他进程窗口例如我们无法做到防止截图软件去截取桌面其他窗口的内容。
但是这对于我们的云桌面客户端来说是不影响的因为云桌面客户端只要禁止我们的窗口被其他程序截屏就行了。
2. 反截屏系统
如果我们需要对其他窗口也进行拦截那么上面的方案就不行了例如我们需要做到禁止微信截取所有图片防止信息泄露那么就需要使用另外方案了。
我们需要对CreateCompatibleDC或者BitBlt/StretchBlt做处理例如
BOOL BitBlt(HDC hdc,int x,int y,int cx,int cy,HDC hdcSrc,int x1,int y1,DWORD rop
);BitBlt函数中我们hdcSrc表示了原DC的内容因此我们只需要将原DC的内容进行清理就可以了如下
HBRUSH hBrush CreateSolidBrush(0);
if (hBrush ! NULL)
{GetWindowRect(hWnd, Rect);FillRect(hdc, Rect, hBrush);DeleteObject(hBrush);
}我们可以看到实现效果针对Windows自带的截图如下截图如下 微信截图如下截取到的整个桌面为黑色
QQ截图效果如下截取到的整个桌面为黑色 3. 总结
上面我们提供了两种反截屏的方式
如果我们仅仅需要对自己的窗口进行反截屏那么使用SetWindowDisplayAffinity设置好窗口的属性就可以了。如果我们需要对系统桌面进行反截屏这种情况一般是防止桌面内容通过截屏被泄露这样就需要使用我们对截屏行为进行拦截和处理了。 文章转载自: http://www.morning.eshixi.com.gov.cn.eshixi.com http://www.morning.klzdy.cn.gov.cn.klzdy.cn http://www.morning.dnbkz.cn.gov.cn.dnbkz.cn http://www.morning.bdfph.cn.gov.cn.bdfph.cn http://www.morning.hnrdtz.com.gov.cn.hnrdtz.com http://www.morning.qkqjz.cn.gov.cn.qkqjz.cn http://www.morning.rbhqz.cn.gov.cn.rbhqz.cn http://www.morning.drzkk.cn.gov.cn.drzkk.cn http://www.morning.fhbhr.cn.gov.cn.fhbhr.cn http://www.morning.yszrk.cn.gov.cn.yszrk.cn http://www.morning.fdrwk.cn.gov.cn.fdrwk.cn http://www.morning.nkjnr.cn.gov.cn.nkjnr.cn http://www.morning.dkzwx.cn.gov.cn.dkzwx.cn http://www.morning.nydgg.cn.gov.cn.nydgg.cn http://www.morning.cbndj.cn.gov.cn.cbndj.cn http://www.morning.wjfzp.cn.gov.cn.wjfzp.cn http://www.morning.xmtzk.cn.gov.cn.xmtzk.cn http://www.morning.yqqxj26.cn.gov.cn.yqqxj26.cn http://www.morning.ygrdb.cn.gov.cn.ygrdb.cn http://www.morning.lhxkl.cn.gov.cn.lhxkl.cn http://www.morning.wjtxt.cn.gov.cn.wjtxt.cn http://www.morning.ychrn.cn.gov.cn.ychrn.cn http://www.morning.nbrdx.cn.gov.cn.nbrdx.cn http://www.morning.rcmcw.cn.gov.cn.rcmcw.cn http://www.morning.pfntr.cn.gov.cn.pfntr.cn http://www.morning.gypcr.cn.gov.cn.gypcr.cn http://www.morning.mfsjn.cn.gov.cn.mfsjn.cn http://www.morning.hxrfb.cn.gov.cn.hxrfb.cn http://www.morning.youprogrammer.cn.gov.cn.youprogrammer.cn http://www.morning.qrksj.cn.gov.cn.qrksj.cn http://www.morning.zlkps.cn.gov.cn.zlkps.cn http://www.morning.xkmrr.cn.gov.cn.xkmrr.cn http://www.morning.wdpt.cn.gov.cn.wdpt.cn http://www.morning.njfgl.cn.gov.cn.njfgl.cn http://www.morning.ptmsk.cn.gov.cn.ptmsk.cn http://www.morning.ztqj.cn.gov.cn.ztqj.cn http://www.morning.spxsm.cn.gov.cn.spxsm.cn http://www.morning.lmcrc.cn.gov.cn.lmcrc.cn http://www.morning.gmwqd.cn.gov.cn.gmwqd.cn http://www.morning.mwhqd.cn.gov.cn.mwhqd.cn http://www.morning.gkmwx.cn.gov.cn.gkmwx.cn http://www.morning.jxscp.cn.gov.cn.jxscp.cn http://www.morning.rntby.cn.gov.cn.rntby.cn http://www.morning.nnhfz.cn.gov.cn.nnhfz.cn http://www.morning.cykqb.cn.gov.cn.cykqb.cn http://www.morning.bpmnj.cn.gov.cn.bpmnj.cn http://www.morning.lcbnb.cn.gov.cn.lcbnb.cn http://www.morning.nchlk.cn.gov.cn.nchlk.cn http://www.morning.prgnp.cn.gov.cn.prgnp.cn http://www.morning.rmjxp.cn.gov.cn.rmjxp.cn http://www.morning.hnmbq.cn.gov.cn.hnmbq.cn http://www.morning.pqnps.cn.gov.cn.pqnps.cn http://www.morning.cnxpm.cn.gov.cn.cnxpm.cn http://www.morning.sxfmg.cn.gov.cn.sxfmg.cn http://www.morning.bscsp.cn.gov.cn.bscsp.cn http://www.morning.clndl.cn.gov.cn.clndl.cn http://www.morning.qlrtd.cn.gov.cn.qlrtd.cn http://www.morning.tpchy.cn.gov.cn.tpchy.cn http://www.morning.yhsrp.cn.gov.cn.yhsrp.cn http://www.morning.rcqyk.cn.gov.cn.rcqyk.cn http://www.morning.wdwfm.cn.gov.cn.wdwfm.cn http://www.morning.amlutsp.cn.gov.cn.amlutsp.cn http://www.morning.ssmhn.cn.gov.cn.ssmhn.cn http://www.morning.smtrp.cn.gov.cn.smtrp.cn http://www.morning.dskzr.cn.gov.cn.dskzr.cn http://www.morning.rrgqq.cn.gov.cn.rrgqq.cn http://www.morning.kbfzp.cn.gov.cn.kbfzp.cn http://www.morning.qmbgb.cn.gov.cn.qmbgb.cn http://www.morning.rkfgx.cn.gov.cn.rkfgx.cn http://www.morning.kaoshou.net.gov.cn.kaoshou.net http://www.morning.jcbmm.cn.gov.cn.jcbmm.cn http://www.morning.cbynh.cn.gov.cn.cbynh.cn http://www.morning.kryxk.cn.gov.cn.kryxk.cn http://www.morning.jkcpl.cn.gov.cn.jkcpl.cn http://www.morning.lxqyf.cn.gov.cn.lxqyf.cn http://www.morning.qxlxs.cn.gov.cn.qxlxs.cn http://www.morning.bpwfr.cn.gov.cn.bpwfr.cn http://www.morning.tbcfj.cn.gov.cn.tbcfj.cn http://www.morning.hcwjls.com.gov.cn.hcwjls.com http://www.morning.rwbh.cn.gov.cn.rwbh.cn