C# wpf 通过HwndHost渲染视频的实现方法
程序员文章站
2022-06-19 09:04:42
目录前言一、如何实现二、使用方式三、示例总结前言日常开发中,特别是音视频开发,需要在界面上渲染视频,比如制作一个播放器、或者视频编辑工具、以及视频会议客户端。通常拿到的是像素格式数据,此时需要渲染到w...
前言
日常开发中,特别是音视频开发,需要在界面上渲染视频,比如制作一个播放器、或者视频编辑工具、以及视频会议客户端。通常拿到的是像素格式数据,此时需要渲染到wpf窗口上就需要一定的方法,本文介绍一种通过hwnd渲染的方法,控件既能提供hwnd又能嵌入wpf窗口里。
一、如何实现
通过继承hwndhost并实现抽象方法即可作为一个带句柄的wpf控件在xaml中使用,代码如下:
win32api版本:
class nativehost : hwndhost { new public intptr handle { get { return (intptr)getvalue(handleproperty); } set { setvalue(handleproperty, value); } } // using a dependencyproperty as the backing store for hwnd. this enables animation, styling, binding, etc... public static readonly dependencyproperty handleproperty = dependencyproperty.register("handle", typeof(intptr), typeof(nativehost), new propertymetadata(intptr.zero)); protected override handleref buildwindowcore(handleref hwndparent) { handle = createwindowex( 0, "static", "", ws_child | ws_visible | lbs_notify, 0, 0, (int)width, (int)height, hwndparent.handle, intptr.zero, intptr.zero, 0); return new handleref(this, handle); } protected override void destroywindowcore(handleref hwnd) { destroywindow(hwnd.handle); } const int ws_child = 0x40000000; const int ws_visible = 0x10000000; const int lbs_notify = 0x001; [dllimport("user32.dll")] internal static extern intptr createwindowex(int exstyle, string classname, string windowname, int style, int x, int y, int width, int height, intptr hwndparent, intptr hmenu, intptr hinstance, [marshalas(unmanagedtype.asany)] object pvparam); [dllimport("user32.dll")] static extern bool destroywindow(intptr hwnd); }
hwndsource版本:
class nativehost : hwndhost { new public intptr handle { get { return (intptr)getvalue(handleproperty); } set { setvalue(handleproperty, value); } } // using a dependencyproperty as the backing store for hwnd. this enables animation, styling, binding, etc... public static readonly dependencyproperty handleproperty = dependencyproperty.register("handle", typeof(intptr), typeof(nativehost), new propertymetadata(intptr.zero)); hwndsource _source; protected override handleref buildwindowcore(handleref hwndparent) { _source = new hwndsource(0, ws_child | ws_visible | lbs_notify, 0,0,0, (int)width, (int)height, "nativehost", hwndparent.handle); handle = _source.handle; return new handleref(this,handle); } protected override void destroywindowcore(handleref hwnd) { _source.dispose(); } const int ws_child = 0x40000000; const int ws_visible = 0x10000000; const int lbs_notify = 0x001; }
二、使用方式
直接在xaml中使用上述实现的控件:
<window x:class="wpfapp1.mainwindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:sys="clr-namespace:system;assembly=mscorlib" xmlns:local="clr-namespace:wpfapp1" xmlns:interop="clr-namespace:system.windows.interop;assembly=presentationframework" mc:ignorable="d" title="mainwindow" height="440" width="640" > <grid> <!--控件有个handle属性,可以绑定,使用onewaytosource赋值给viewmodel--> <local:nativehost x:name="nh_plane" height="360" width="640" ></local:nativehost> </grid> </window>
在loaded事件中才能获取到句柄,在此事件之前句柄还没有生成。
private void window_loaded(object sender, routedeventargs e) { //获取控件句柄 var hwnd=nh_plane.handle //通过句柄进行渲染 }
三、示例
示例代码:
https://download.csdn.net/download/u013113678/40304426
注:示例代码与文本所有代码基本一致,渲染部分在c++的dll不可见,请根据需要下载。
效果预览:
总结
通过hwndhost渲染视频,本质是获取hwnd渲染视频,获取hwnd后渲染方式可以有多种选择,用gdi、d3d、opengl都可以,其实就是相当于在mfc上渲染视频,很多方案有可以通用。但这种方法也有一些缺点,其渲染和wpf控件有冲突,无法同时存在,即视频上面无法放置任何控件、也无法做到圆角播放框。
到此这篇关于c# wpf 通过hwndhost渲染视频的文章就介绍到这了,更多相关c# 渲染视频内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!