为捕获流添加水印
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在记录器视频中添加水印,您必须在捕获和记录的图表中插入一些水印过滤器。在我的应用程序中,我通过 样本采集器执行此操作过滤器使我能够访问从输入源捕获的每个视频帧。
但请注意:框架将采用某种像素格式,如果不是 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.