如何设置GDI HDC的可绘制区域?
我想在 HDC 上绘制 HBITMAP,
我使用了 StretchDIBits。 效果很好。 ::拉伸DIBits。
但是,我只想要一个窗口来观看绘制结果,除了窗口之外,我希望stretchDIBits不产生任何效果(它不能在其他区域上绘制),我该怎么办?
I want to draw a HBITMAP onto HDC,
I used StretchDIBits. It works fine.
::StretchDIBits.
however, I only want a window to watch the drawing result, beside the window, I wish the stretchDIBits do not take any effect(It can not draw on other area), how can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建子窗口时,请确保将
WS_CLIPSIBLINGS
样式设置为禁止在WM_PAINT
中在客户区之外进行绘制。除此之外,
SelectClipRegion
可能就是您想要的。When a child window is created, make sure the
WS_CLIPSIBLINGS
style is set to disallow painting outside the client area inWM_PAINT
.Other than that,
SelectClipRegion
is probably what you want.