为捕获流添加水印

发布于 2024-10-16 02:42:34 字数 238 浏览 3 评论 0原文

我正在使用 DirectX.Capture 和 Direct Show。 使用现有项目 http://www.codeproject.com/KB/directx/ directxcapture.aspx?msg=2490488 想加水印可以吗?如果是的话怎么办?

I am using DirectX.Capture and Direct Show.
Using existing project http://www.codeproject.com/KB/directx/directxcapture.aspx?msg=2490488
want to add water mark is it possible? if yes how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野心澎湃 2024-10-23 02:42:34

要在记录器视频中添加水印,您必须在捕获和记录的图表中插入一些水印过滤器。在我的应用程序中,我通过 样本采集器执行此操作过滤器使我能够访问从输入源捕获的每个视频帧。

但请注意:框架将采用某种像素格式,如果不是 RGB24,您在其上绘制内容时会遇到很多麻烦。如果可能,将输入源配置为 RGB24,即使使用 GDI 或 GDI+,您也可以在其上绘图。

如果您需要更多信息,请扩展您的问题。

To add a watermark in the recorder video, you would have to insert some watermarking filter into the graph that does capture and recording. In my apps, I am doing it via sample grabber filter which enables me to access every video frame as it is captured from the input source.

Beware though: the frame will be in some pixel format, and if it's not RGB24 you'll be in a lot of trouble to draw something on it. If possible, configure your input source to RGB24 and you'll be able to draw on it even with GDI or GDI+.

Expand your question if you need more info.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文