728x90
반응형
판넬 이미지파일 저장
TMyPanel = class(TPanel)
public
property Canvas;
end;
procedure TForm1.Button1Click(Sender: TObject);
var B: TBitmap;
begin
B:=TBitmap.Create;
B.Width:=Panel1.Width;
B.Height:=Panel1.Height;
B.Canvas.CopyRect(Rect(0,0,B.Width,B.Height),
TMyPanel(Panel1).Canvas,
Rect(0,0,B.Width,B.Height));
B.SaveToFile('panel.bmp');
B.Free;
end;
Panel1 - your Panel;
728x90
반응형
'Delphi Tip > 이미지-영상' 카테고리의 다른 글
이미지 마우스로 움직이기 (0) | 2024.01.04 |
---|---|
델파이 RGB 와 HSL 유틸 유닛 (0) | 2021.10.22 |
이미지(JPG) 사이즈 구하기 (0) | 2021.10.20 |
Timage에 외부 이미지 파일/txt파일 드래그&드롭으로 가져오기 (0) | 2021.10.19 |
델파이 API 애니매이션 효과내기 (0) | 2021.10.18 |
댓글