Arsip: Program zoom in/out images

more 11 years ago
zed1308
Hai..semua.Saya orang malaysia.Dah lama saya join komuniti ini tapi tidak pernah post topik kt sini.Post ini adalah first time.Komuniti ini memang banyak membantu saya dalam pemprograman delphi.Thanks komuniti delphi indonesia.Dimalaysia tiada komuniti delhi.Huhuhu...
Saya ingin tanya kawan2.bagaimana nak buat program zoom in/out image dengan menggunakan TImage(standart komponen).Saya udah search google namun tidak dijumpa solutionnya. :cry:
Tolong ya...

more 11 years ago
zed1308
@yayaretina: http://delphi.about.com/od/graphics/l/aa120198.htmContoh ini tak seperti yg saya inginkn.Saya inginkn program yg boleh zoom in/out image yg boleh diload.Dalam program tu ada komponent TImage dan juga button zoom in/out.

more 11 years ago
sikuper85
udah ketemu belum om...
maksudnya zoom in/out mirip yg di paint tu bukan?
klo ya, mungkin seperti ini kali yawh...
(ini bukan fungsi zoom in/out sih, cuma ganti2 ukuran gambar nya ajah,
klo yg zoom in/out beneran ga tau deh gmn...)
oya, komponen Image1 (TImage) sebaiknya diletakkan di atas komponen TScrollBox.
var pfwidth, pfheight: Integer;
procedure BukaGambar;
begin
if OpenPictureDialog1.Execute then begin
Image1.AutoSize := True;
Image1.Picture.LoadFromFile(OpenPictureDialog1.FileName);
pfwidth := Image1.Width;
pfheight := Image1.Height;
Image1.AutoSize := False;
Image1.Stretch := True;
end;
end;
procedure ZoomIn;
begin
Image1.Width := Image1.Width+round(pfwidth/100100);
Image1.Height := Image1.Height+round(pfheight/100 100);
// nilai 100100 bisa diganti 100 50, etc.
// tapi kalo nilai aslinya ampe koma2an, ntar pas di-zoom out mungkin
// ga kembali ke ukuran persis seperti semula
Image1.Repaint;
end;
procedure ZoomOut;
begin
Image1.Width := Image1.Width-round(pfwidth/100100);
Image1.Height := Image1.Height-round(pfheight/100 100);
// penjelasan, SDA
Image1.Repaint;
end;
CMIIW.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 3 months ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 3 months ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 months ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 months ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 months ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 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
- Grumple.. Grumple...
by cyber_hecker in OOT more 15 years ago - cara capture form
by veanz in Hal umum tentang Pascal Indonesia more 11 years ago - Help .. Terjemahin in delphi Dunk ...
by daryl_sukma_gumilar in Hal umum tentang Pascal Indonesia more 11 years ago - gimana cara supaya TITLE BAR tidak bisa bisa di drag ?
by arjuna_1982 in Delphi.NET more 11 years ago - Trouble with ADO
by grounders in Hal umum tentang Pascal Indonesia more 15 years ago - Membuka Project di komputer lain
by bad2001 in Tip n Trik Pemrograman more 14 years ago - FreePascal v.2.2 has been released!
by simba in OpenSource dan Gratis more 13 years ago - ODBC via Winxp VS Win2000
by e_soep in Network, Files, I/O & System more 13 years ago - Kriptografi Dengan Delphi (Asimetri)
by Hartono in Hal umum tentang Pascal Indonesia more 15 years ago - Save beberapa item listbox ke tabel
by mysweetaurel in Lain-lain more 12 years ago