【问题标题】:C# WinForm - SharpDX.Toolkit.Graphics draw 2D TextureC# WinForm - SharpDX.Toolkit.Graphics 绘制 2D 纹理
【发布时间】:2015-09-12 12:16:20
【问题描述】:

我想为 C# WinForms 应用程序实现硬件加速。原因是我必须绘制 150 x 720p 的图像,而 5 个图片框控件花费的时间太长(缩放+绘制图像),因此在处理和重新加载方面存在问题。 所以我处理了ShapeDX。

但现在我卡住了,不知道如何绘制 2D 纹理。为了测试代码,我只有一个测试按钮和一个图片框。

当我在 PictureBox 中运行代码时,还会加载 DirectX(Draw 或 3D)。我承认黑色背景。 但我不明白必须如何绘制纹理。

        String imageFile = "Image.JPG";

        Control TargetControl = this.pictureBoxCurrentFrameL;
        int TotalWidth = TargetControl.Width;
        int TotalHeight = TargetControl.Height;

        SharpDX.Direct3D11.Device defaultDevice = new SharpDX.Direct3D11.Device(SharpDX.Direct3D.DriverType.Hardware, SharpDX.Direct3D11.DeviceCreationFlags.Debug);

        SharpDX.Toolkit.Graphics.GraphicsDevice graphicsDevice = SharpDX.Toolkit.Graphics.GraphicsDevice.New(defaultDevice);
        SharpDX.Toolkit.Graphics.PresentationParameters presentationParameters = new SharpDX.Toolkit.Graphics.PresentationParameters();
        presentationParameters.DeviceWindowHandle = this.pictureBoxCurrentFrameL.Handle;
        presentationParameters.BackBufferWidth = TotalWidth;
        presentationParameters.BackBufferHeight = TotalHeight;

        SharpDX.Toolkit.Graphics.SwapChainGraphicsPresenter swapChainGraphicsPresenter = new SharpDX.Toolkit.Graphics.SwapChainGraphicsPresenter(graphicsDevice, presentationParameters);
        SharpDX.Toolkit.Graphics.Texture2D texture2D = SharpDX.Toolkit.Graphics.Texture2D.Load(graphicsDevice, imageFile);

        //Now i should draw. But how?

        swapChainGraphicsPresenter.Present();/**/

在 Windows 10 和 SharpDX-SDK-2.6.3 上使用 Microsoft Visual Studio Community 2015(.Net 4,C# WinForm)!

感谢您的帮助。

【问题讨论】:

  • 您需要多久更新一次用户界面?每秒多少次?您可能只想使用 GDI。
  • 我每秒可以达到 150x 720p 帧。是 5 倍不同的来源(30 fps)。 2x 720p 视频(30 fps) 2x 720p 视频帧(带有识别模式) 1x 720p 视频帧最终结果 模式识别分为几个线程。最终计算也在单独的线程上执行。所有图像都是从不同的线程生成的,并且是异步的。
  • 我今天测试了 GDI。显然,性能类似于控件。我认为使用 GDI 比控件更好。所以你可以控制绘图(例如丢帧、处置等),但我更喜欢使用 Direct Draw 。有人可以帮我解决 Direct Draw 问题吗?
  • 有人知道吗?
  • 如果您只绘制 2D 的东西,您应该使用 Direct2D。我很确定 SharpDX 会包装它。 DirectDraw 已被标记为已弃用大约十年。您使用它的方式与我过去的方式不同。而且它的实现也不是微不足道的,所以我不知道在这里包含我的所有代码是否合适。我会看看我能不能把东西放在一起,但可能需要一段时间。应该有一个带有 SharpDX 的 Direct2D 示例。试试看,如果您需要帮助,请告诉我。

标签: c# winforms sharpdx slimdx


【解决方案1】:

我通过简单地切换到 SlimDX (SlimDX Runtime .NET 4.0 x64 January 2012.msi, .Net4, Win10, MS Visual Studio Community 2015, Winforms App.) 解决了这个问题。有几个有用的教程。

要使用 SlimDX,只需将唯一的一个 DLL 链接到您的项目!安装 SlimDX 后,你会在你的 C 盘的某个地方找到这个 SlimDX.dll 文件。

了解您至少需要一个工厂和 Direct2D 的渲染目标非常重要。 RenderTarget 指向要使用的对象(Control/form/etc)并接管绘图。

不需要交换链。可能由渲染目标在内部使用。最大的部分是将位图转换为有用的 Direct2D 位图(用于绘图)。否则,您也可以从 MemoryStream 处理位图数据。

对于那些也在寻找解决方案的人:

        Control targetControl = this.pictureBoxCurrentFrameL;
        String imageFile = "Image.JPG";

        //Update control styles, works for forms, not for controls. I solve this later otherwise .
        //this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
        //this.SetStyle(ControlStyles.Opaque, true);
        //this.SetStyle(ControlStyles.ResizeRedraw, true);

        //Get requested debug level
        SlimDX.Direct2D.DebugLevel debugLevel = SlimDX.Direct2D.DebugLevel.None;

        //Resources for Direct2D rendering
        SlimDX.Direct2D.Factory d2dFactory = new SlimDX.Direct2D.Factory(SlimDX.Direct2D.FactoryType.Multithreaded, debugLevel);

        //Create the render target
        SlimDX.Direct2D.WindowRenderTarget d2dWindowRenderTarget = new SlimDX.Direct2D.WindowRenderTarget(d2dFactory, new SlimDX.Direct2D.WindowRenderTargetProperties() {
            Handle = targetControl.Handle,
            PixelSize = targetControl.Size,
            PresentOptions = SlimDX.Direct2D.PresentOptions.Immediately
        });

        //Paint!
        d2dWindowRenderTarget.BeginDraw();
        d2dWindowRenderTarget.Clear(new SlimDX.Color4(Color.LightSteelBlue));

        //Convert System.Drawing.Bitmap into SlimDX.Direct2D.Bitmap!
        System.Drawing.Bitmap bitmap = (System.Drawing.Bitmap)Properties.Resources.Image_720p;//loaded from embedded resource, can be changed to Bitmap.FromFile(imageFile); to load from hdd!
        SlimDX.Direct2D.Bitmap d2dBitmap = null;
        System.Drawing.Imaging.BitmapData bitmapData = bitmap.LockBits(new Rectangle(new Point(0, 0), bitmap.Size), System.Drawing.Imaging.ImageLockMode.ReadOnly, System.Drawing.Imaging.PixelFormat.Format32bppPArgb);//TODO: PixelFormat is very important!!! Check!
        SlimDX.DataStream dataStream = new SlimDX.DataStream(bitmapData.Scan0, bitmapData.Stride * bitmapData.Height, true, false);
        SlimDX.Direct2D.PixelFormat d2dPixelFormat = new SlimDX.Direct2D.PixelFormat(SlimDX.DXGI.Format.B8G8R8A8_UNorm, SlimDX.Direct2D.AlphaMode.Premultiplied);
        SlimDX.Direct2D.BitmapProperties d2dBitmapProperties = new SlimDX.Direct2D.BitmapProperties();
        d2dBitmapProperties.PixelFormat = d2dPixelFormat;
        d2dBitmap = new SlimDX.Direct2D.Bitmap(d2dWindowRenderTarget, new Size(bitmap.Width, bitmap.Height), dataStream, bitmapData.Stride, d2dBitmapProperties);
        bitmap.UnlockBits(bitmapData);

        //Draw SlimDX.Direct2D.Bitmap
        d2dWindowRenderTarget.DrawBitmap(d2dBitmap, new Rectangle(0, 0, bitmap.Width, bitmap.Height));/**/

        d2dWindowRenderTarget.EndDraw();

        //Dispose everything u dont need anymore.
        //bitmap.Dispose();//......

所以使用Direct2D超级简单,所有代码都可以压缩成2条主线+绘图:

        SlimDX.Direct2D.Factory d2dFactory = new SlimDX.Direct2D.Factory(SlimDX.Direct2D.FactoryType.Multithreaded, SlimDX.Direct2D.DebugLevel.None);
        SlimDX.Direct2D.WindowRenderTarget d2dWindowRenderTarget = new SlimDX.Direct2D.WindowRenderTarget(d2dFactory, new SlimDX.Direct2D.WindowRenderTargetProperties() { Handle = targetControl.Handle, PixelSize = targetControl.Size, PresentOptions = SlimDX.Direct2D.PresentOptions.Immediately });

        d2dWindowRenderTarget.BeginDraw();
        d2dWindowRenderTarget.Clear(new SlimDX.Color4(Color.LightSteelBlue));
        d2dWindowRenderTarget.DrawRectangle(new SlimDX.Direct2D.SolidColorBrush(d2dWindowRenderTarget, new SlimDX.Color4(Color.Red)), new Rectangle(20,20, targetControl.Width-40, targetControl.Height-40));
        d2dWindowRenderTarget.EndDraw();

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-09-02
    • 2012-12-20
    • 2015-02-15
    • 1970-01-01
    相关资源
    最近更新 更多