-1

我使用此代码制作屏幕截图:

function GetScreenShot: TBitmap;
var
  Desktop: HDC;
begin
  Result  := TBitmap.Create;
  Desktop := GetDC(0);
  try
    try
      Result.PixelFormat := pf32bit;
      Result.Width := Screen.Width;
      Result.Height := Screen.Height;
      BitBlt(Result.Canvas.Handle, 0, 0, Result.Width, Result.Height, 
        Desktop, 0, 0, SRCCOPY);
      Result.Modified := True;
    finally
      ReleaseDC(0, Desktop);
    end;
  except
    Result.Free;
    Result := nil;
  end;
end;


procedure TForm1.Button1Click(Sender: TObject);
begin
  Image1.Picture.Bitmap := GetScreenShot;
end;

现在我想问我如何改变质量。例如,我可以在 25%、50%、75% 和 100% 之间进行选择。

我怎么能在我的代码中实现它?

4

1 回答 1

5

您无法指定截取的屏幕截图的大小或质量,但您可以稍后自行更改,例如查看以下代码:http ://www.tek-tips.com/faqs.cfm?fid=7481

于 2013-04-13T13:15:08.873 回答