Vista / Windows 7中字幕的透明度

我将EVR渲染器应用到我的播放器中以处理Windows Vista +上的调整质量问题,并出现问题... 我有EVR的字幕叠加问题: 试着看看我在说什么 - 你必须在选项中设置EVR。 我使用它来使用DirectX表面将32位alpha位图应用到VMR9:
private void SetVRM9MixerSettings(int width, int height, int lines)
        {
            int hr = 0;
            VMR9AlphaBitmap alphaBmp;               

            // Set Alpha Bitmap Parameters for using a Direct3D surface
            alphaBmp = new VMR9AlphaBitmap();
            alphaBmp.dwFlags = VMR9AlphaBitmapFlags.EntireDDS | VMR9AlphaBitmapFlags.FilterMode;

            // on unmanagedSurface the bitmap was drawn with transparency
            alphaBmp.pDDS = unmanagedSurface;
            alphaBmp.rDest = GetDestRectangle(width, height, lines);
            alphaBmp.fAlpha = 1.0f;
            alphaBmp.dwFilterMode = VMRMixerPrefs.BiLinearFiltering;

            // for anaglyph half SBS
            if (FrameMode == Mars.FrameMode.HalfSideBySide)
            {
                alphaBmp.rDest.left /= 2;
                alphaBmp.rDest.right /= 2;
            }

            // Set Alpha Bitmap Parameters
            hr = mixerBitmap.SetAlphaBitmap(ref alphaBmp);
            DsError.ThrowExceptionForHR(hr);

        }
然而现在项目MediaFoundation.NET没有设置alphaBmp.pDDS指针,所以我不能使用directdraw表面并且需要使用GDI(如果某人有一种方法可以做到这一点)。但是使用GDI我不能使用32位alpha位图来实现真正的透明度 - 我只能通过这种方法获得1位透明度:
 private void SetEVRMixerSettings(int width, int height, int subtitleLines)
        {
            MFVideoAlphaBitmap alphaBmp = new MFVideoAlphaBitmap();

            //alphaBitmap is a 32bit semitransparent Bitmap
            Graphics g = Graphics.FromImage(alphaBitmap);

            // get pointer to needed objects
            IntPtr hdc = g.GetHdc();
            IntPtr memDC = CreateCompatibleDC(hdc);
            IntPtr hBitmap = alphaBitmap.GetHbitmap();
            IntPtr hOld = SelectObject(memDC, hBitmap);

            alphaBmp.GetBitmapFromDC = true;
            alphaBmp.stru = memDC;
            alphaBmp.paras = new MFVideoAlphaBitmapParams();
            alphaBmp.paras.dwFlags = MFVideoAlphaBitmapFlags.Alpha | MFVideoAlphaBitmapFlags.SrcColorKey | MFVideoAlphaBitmapFlags.DestRect;

            // calculate destination rectangle
            MFVideoNormalizedRect mfNRect = new MFVideoNormalizedRect();
            NormalizedRect nRect = GetDestRectangle(width, height, subtitleLines);

            mfNRect.top = nRect.top;
            mfNRect.left = nRect.left;
            mfNRect.right = nRect.right;
            mfNRect.bottom = nRect.bottom;

            // used when viewing half side by side anaglyph video that is stretched to full width
            if (FrameMode == Mars.FrameMode.HalfSideBySide)
            {
                mfNRect.left /= 2;
                mfNRect.right /= 2;
            } 

            alphaBmp.paras.nrcDest = mfNRect;

            // calculate source rectangle (full subtitle bitmap)
            MFRect rcSrc = new MFRect();
            rcSrc.bottom = alphaBitmap.Height;
            rcSrc.right = alphaBitmap.Width;
            rcSrc.top = 0;
            rcSrc.left = 0;

            alphaBmp.paras.rcSrc = rcSrc;

            // apply 1-bit transparency 
            System.Drawing.Color colorKey = System.Drawing.Color.Black;
            alphaBmp.paras.clrSrcKey = ColorTranslator.ToWin32(colorKey);

            // 90% visible
            alphaBmp.paras.fAlpha = 0.9F;

            // set the bitmap to the evr mixer
            evrMixerBitmap.SetAlphaBitmap(alphaBmp);

            // cleanup
            SelectObject(memDC, hOld);
            DeleteDC(memDC);
            g.ReleaseHdc();

        }
所以问题是: 如何使用DirectDraw表面混合EVR视频上的位图 要么 如何在没有DirectDraw的情况下混合半透明位图? 非常感谢你!     
已邀请:
我会试着回答第二个问题...... Alpha混合是一项相当简单的任务。 假设alpha的范围为0.0 - 1.0,其中0.0表示完全透明,1.0表示完全不透明的颜色。
R_result = R_Source * alpha + R_destination * (1.0 - alpha)
由于我们不需要浮点数,我们可以将alpha切换到0-255范围。
R_result = ( R_Source * alpha + R_destination * (255 - alpha) ) >> 8
你可以进一步优化它......这取决于你。 当然,同样适用于G和B.     

要回复问题请先登录注册