O
Onegin
Вот код:
Сохраняет картинку не полностю, слева обрубивает.
pbGraph - PaintBox
Код:
Var
Bitmap: TBitmap;
W,H:integer;
begin
if dSaveGraph.Execute then
begin
Bitmap:=TBitmap.Create;
W:=pbGraph.Width;
H:=pbGraph.Height;
Bitmap.Height:=H;
Bitmap.Width:=W;
Bitmap.Canvas.CopyRect(Rect(0,0,H,W),pbGraph.Canvas,Rect(0,0,H,W));
Bitmap.SaveToFile(dSaveGraph.FileName);
Bitmap.Free
end;
end;
Сохраняет картинку не полностю, слева обрубивает.
pbGraph - PaintBox