Arsip: Bagaimana screencapture active window tanpa border & Cap

more 12 years ago
ronindra
Bagaimana cara screen capture untuk active windows tanpa border dan caption?
saya udah cari dan menemukan beberapa link untuk screen capture:
http://www.bitwisemag.com/copy/delphi/delphi1.html
http://delphi.about.com/od/adptips2006/qt/captureactive.htm
tapi caption & border formnya masih terbawa juga.
Ada satu cara yang saya sudah saya gunakan yaitu
Image1.Picture.Bitmap := Fmain.GetFormImage;
tapi capturenya lambat dan hasilnya melenceng (jika kita pakai component raize misalnya)
Mohon pencerahan...

more 12 years ago
deLogic
Saya menggunakan kode yang terdapat pada artikel bitwisemag untuk meng-capture jendela yang aktif tanpa caption dan border, dan tidak ada masalah.
procedure TForm1.Button1Click(Sender: TObject);
var
DestRect, SourceRect: TRect;
h: THandle;
hdcSrc : THandle;
begin
h := GetForeGroundWindow;
if h <> 0 then
begin
try
hdcSrc := GetDC(h); // use this for ClientRect
Windows.GetClientRect(h,SourceRect);
Image1.Picture.Bitmap.Width := SourceRect.Right - SourceRect.Left;
Image1.Picture.Bitmap.Height := SourceRect.Bottom - SourceRect.Top;
DestRect := Rect(0, 0, SourceRect.Right - SourceRect.Left,
SourceRect.Bottom - SourceRect.Top);
StretchBlt(Image1.Picture.Bitmap.Canvas.Handle,
0, 0, Image1.Picture.Bitmap.Width, Image1.Picture.Bitmap.Height, hdcSrc,
0, 0, SourceRect.Right - SourceRect.Left, SourceRect.Bottom - SourceRect.Top,
SRCCOPY)
finally
ReleaseDC(0, hdcSrc);
end;
end;
end;

more 12 years ago
Tbawor
sekedar memperjelas
baris kode no 8
// if h <> 0 then
operator <> maksudnya adalah <>
Tag highlighternya suka mengubah2 operator Delphi...
more ...
- Pages:
- 1
reply |
Report Obsolete
Last Articles
- Project Group dalam Lazarus
- FastPlaz Database Explorer
- Release: FastPlaz Super Mom v0.12.22
- PascalClass #3: Web Development with Free Pascal
- Makna Pascal di Pascal Indonesia
- Kulgram : Instalasi Lazarus di Perangkat Berbasis ARM
- PascalClass #1: Analisa Database dan Machine Learning
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
- Mengenal OXYGENE – Pascal For .NET
- PascalTalk #5: UX: Research, Design and Engineer
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 months ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 5 months ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 5 months ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 5 months ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 5 months ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 5 months ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 1 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 8 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 8 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 8 years ago
Random Topic
- folder browser dialog
by rey1024 in Tip n Trik Pemrograman more 13 years ago - Runtime Error 216 at 0040432A di Windows XP Pro SP2
by archvile in Tip n Trik Pemrograman more 13 years ago - Business intelligence (BI)
by ichan29 in Tip n Trik Pemrograman more 13 years ago - pascal dan unix
by simba in onLinux more 13 years ago - Buat Game Igo
by Melon_Cry in Games more 13 years ago - Tanya: Cara kerja dbImage di Quick Report
by cintik in Hal umum tentang Pascal Indonesia more 15 years ago - extpascal controls
by simba in Web Programming more 11 years ago - dll untuk resource
by greatjon2002 in Tip n Trik Pemrograman more 14 years ago - Delphi For Dummies
by ndenkltop in Kritik & Saran more 13 years ago - DATABASE error: NULL type <> STRING type
by nnd_ms in Hal umum tentang Pascal Indonesia more 14 years ago