2016-03-25 4 views
0

Directshow.NETとC#を使用してデスクトップ録画(画面録画)アプリケーションを作成しています。私はほとんど完了です、アプリケーションはデスクトップ画面を記録することができます。私はSampleGrabberからBufferCBを実装しているし、私の別のポストFliped cursor icon on desktop recording using directshowの助けを借りて、私はここに正しい向きでBufferCB内で "Parameter is not valid"の問題が発生しました

をマウスポインタをペイントすることができていた映像を記録するには、マウスポインタをペイントするにはBufferCBの私のコードは次のとおりです。

[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand, Flags = 
System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] 
int ISampleGrabberCB.BufferCB(double SampleTime, IntPtr pBuffer, int BufferLen) 
{ 
    if (!wait) 
    { 
     wait = true; 
     Rectangle imageBounds = new Rectangle(0, 0, m_videoWidth, m_videoHeight); 
     Bitmap bitmap = new Bitmap(m_videoWidth, m_videoHeight, System.Drawing.Imaging.PixelFormat.Format24bppRgb); 
     System.Drawing.Imaging.BitmapData bitmapData = bitmap.LockBits(imageBounds, System.Drawing.Imaging.ImageLockMode.ReadWrite, bitmap.PixelFormat); 
     IntPtr ptr = bitmapData.Scan0; 
     bitmap.UnlockBits(bitmapData); 
     CopyMemory(ptr, pBuffer, (uint)BufferLen); 
     bitmap.RotateFlip(System.Drawing.RotateFlipType.RotateNoneFlipY); 
     using (Graphics g = Graphics.FromImage(bitmap)) 
     { 
      CURSORINFO cursorInfo; 
      cursorInfo.cbSize = Marshal.SizeOf(typeof(CURSORINFO)); 

      if (GetCursorInfo(out cursorInfo) && cursorInfo.flags == CURSOR_SHOWING) 
      {       
       IntPtr iconPointer = CopyIcon(cursorInfo.hCursor); 
       ICONINFO iconInfo; 
       int iconX, iconY; 
       if (GetIconInfo(iconPointer, out iconInfo)) 
       { 
        // calculate the correct position of the cursor 
        iconX = cursorInfo.ptScreenPos.x - ((int)iconInfo.xHotspot); 
        iconY = cursorInfo.ptScreenPos.y - ((int)iconInfo.yHotspot); 

        //GETTING ARGUMENTEXCEPTION AT BELOW LINE         
        IntPtr hdc = g.GetHdc(); 
        DrawIcon(hdc, iconX, iconY, cursorInfo.hCursor);         
        g.ReleaseHdc(hdc);         
       }       
      } 
      g.DrawImage(companylogo, m_videoWidth - 100 , 20); 
     } 
     bitmap.RotateFlip(System.Drawing.RotateFlipType.RotateNoneFlipY); 
     bitmapData = bitmap.LockBits(imageBounds, System.Drawing.Imaging.ImageLockMode.ReadWrite, bitmap.PixelFormat); 
     ptr = bitmapData.Scan0; 
     bitmap.UnlockBits(bitmapData);     
     CopyMemory(pBuffer, ptr, (uint)BufferLen); 
     bitmap.Dispose(); 
     wait = false; 
    } 
    return 0; 
} 

マウスポインタがビデオの塗料を得ているが、記録のいくつかの時間後、私はコードIntPtr hdc = g.GetHdc();

のラインでArgumentException"Parameter is not valid."を取得しています誰も私がこれを解決するために入れて助けることができますか?

のStackTrace:
System.Drawing.Graphics.GetHdcで ()

+0

メモリリークにより、別のDCを取得するのに失敗することがありますか? –

+1

[this](http://stackoverflow.com/questions/3818440/parameter-is-not-valid-thrown-from-system-drawing-graphics-gethdc-only-on)の質問を参照してください。 @ RomanR。 –

+0

なぜメモリリークが起こっているのか、私はGraphicsオブジェクトを処分する世話をするブロックを使用しています。 – Amogh

答えて

1

this問題の答えを見てください。 同じエラーメッセージについて説明します。

関連する問題