4

このエラーを出しているプログラム。時にはすぐ​​に、時にはしばらくしてから

http://www1.datafilehost.com/d/39f524c0 いくつかの試行でスレッドが中断し、最終的にブロックされる

ソース:

http://www1.datafilehost.com/d/1cae7b24 EOufOfResources デバッグ中

下手な英語でごめんなさい。次の問題があります。5 fps のスクリーンショットを作成してカーソル アイコンを描画し、PNG で BMP を再コード化し、ブロック ソケット Indy を介してネットワーク経由で送信しようとしています。メイン フォームの TImage (デスクトップ イメージ) に比例して圧縮されて配置されたスクリーンショットを送信した後。これをすべてタイマーで実行している場合- Synchronize() でこのコードをすべて実行している場合はすべて正常に動作しますが、インターフェイスがフリーズする原因となり、それを取り除きたいと思っています。そのため、スレッドの PNG 圧縮で、いくつかの Synchronize() を壊してエラーを見つけようとしましたが (エラー EOutOfResources が発生しました)、できませんでした。助けてください。これが私のコードです:

  TCaptureThread = class(TThread)
  private
   bmp: TBitmap;
   DC: HDC;
   h:hwnd;
   thumbRect : TRect;
   maxWidth, maxHeight:integer;
   png:TPNGImage;
   Stream:TMemoryStream;
   RecBlock:TCommBlock;
   r: TRect;
   CI: TCursorInfo;
   Icon: TIcon;
   II: TIconInfo;
   commblock:TCommblock;
   procedure showthumb;
   procedure send;
   procedure stretch;
   procedure getscreen;
   procedure fixsize;
  protected
   procedure Execute; override;
   constructor Create(CreateSuspended: Boolean);
   destructor destroy; override;
end;

 constructor TCaptureThread.Create(CreateSuspended: Boolean);
 begin
  bmp:=TBitmap.Create;
  Stream:=TMemoryStream.Create;
  png:=TPNGImage.Create;
  Icon := TIcon.Create;
  inherited Create(CreateSuspended);
 end;


 destructor TCaptureThread.destroy;
 begin
  png.Free;
  bmp.Free;
  Icon.Free;
  stream.Free;
  inherited;
 end;

 procedure TCaptureThread.Execute;
 begin
  inherited;
  while not Terminated do
  begin
   Synchronize(fixsize);
   Synchronize(getscreen);
   r := bmp.Canvas.ClipRect;
  try
   CI.cbSize := SizeOf(CI);
   if GetCursorInfo(CI) then
   if CI.Flags = CURSOR_SHOWING then
   begin
    Icon.Handle := CopyIcon(CI.hCursor);
    if GetIconInfo(Icon.Handle, II) then
    begin
      bmp.Canvas.Draw(
            ci.ptScreenPos.x - Integer(II.xHotspot) - r.Left - Form4.Left,
            ci.ptScreenPos.y - Integer(II.yHotspot) - r.Top - Form4.Top,
            Icon
            );
    end;
   end;
  finally

  end;
  try
   png.Assign(bmp);
   png.CompressionLevel := 9;
   png.SaveToStream(stream);
   stream.Position :=0;
   Recblock.Command :='STREAM';
   Recblock.Msg :='';
   Recblock.NameFrom := MyName;
   Synchronize(send);
  finally

  end;
  try
   thumbRect.Left := 0;
   thumbRect.Top := 0;
   if bmp.Width > bmp.Height then
   begin
    thumbRect.Right := maxWidth;
    thumbRect.Bottom := (maxWidth * bmp.Height) div bmp.Width;
   end
   else
   begin
    thumbRect.Bottom := maxHeight;
    thumbRect.Right := (maxHeight * bmp.Width) div bmp.Height;
   end;
   Synchronize(stretch);
   bmp.Width := thumbRect.Right;
   bmp.Height := thumbRect.Bottom;
   Synchronize(showthumb);
  finally
  end;

  sleep(200);
  end;

  end;

  procedure TCaptureThread.getscreen;
  begin
   DC:=GetDC(0);
   bitblt(bmp.Canvas.Handle, 0, 0, Form4.Width+Form4.Left, Form4.Height+Form4.Top,         
   DC, Form4.Left, Form4.Top, SRCCOPY);
   ReleaseDC(0, DC);
  end;

  procedure TCaptureThread.fixsize;
  begin
   maxWidth := Form1.DesktopImage.Width;
   maxHeight := Form1.DesktopImage.Height;
   bmp.Height:=Form4.Height;
   bmp.Width:=Form4.Width;
  end;

  procedure TCaptureThread.send;
  begin
   Form1.Streamclient.IOHandler.Write(RawToBytes(Recblock,sizeof(recblock)),sizeof(recblock));
   Form1.Streamclient.IOHandler.Write(stream,stream.Size,true);
  end;

  procedure TCaptureThread.showthumb;
  begin
   Form1.DesktopImage.Picture.Assign(bmp);
  end;

  procedure TCaptureThread.stretch;
  begin
   SetStretchBltMode(bmp.Canvas.Handle, HALFTONE);  
   StretchBlt(bmp.Canvas.Handle,0,0,thumbRect.Right,thumbRect.Bottom,bmp.Canvas.Handle,0,0,bmp.Width,bmp.Height,SRCCOPY);
  end;
4

2 に答える 2

2

私のデルファイ2010で最初に交換する必要があります

unit CaptureUnit;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs;

unit CaptureUnit;

interface

uses
  Windows, Messages, SysUtils, Variants,
  Classes, Graphics, Controls, Forms, Dialogs;

unit.pas も同様

ビットマップをに割り当てるべきではありませんPicture.Assign(bmp);

procedure TCaptureThread.showthumb;
begin
    CaptureForm.DesktopImage.Picture.Assign(bmp);
end;

しばらくすると、エラー EOutOfResources も表示されます)。

ビットマップをに割り当てる必要があります Picture.Bitmap.Assign(bmp);

procedure TCaptureThread.showthumb;
begin
    CaptureForm.DesktopImage.Picture.Bitmap.Assign(bmp);
end;

変更後、プログラムを 20 分間実行してもエラーは発生しませんでした。あとは手作業で仕上げました。

アップデート:

スクリーンショット : Vcl Video の再生中に実行されているプログラムと、キャプチャ エリアのストレッチと移動。

ここに画像の説明を入力

お役に立てば幸いです。

于 2013-05-04T01:59:18.550 に答える