Arsip: Menambahkan Text Dalam Foto
more 14 years ago
DelphiExpert
Tambahan, saya jelaskan sedikit tentang bekerja dengan graphics.
TCanvas adalah sebuah object wrapper DC (device context) milik Delphi, melalui TCanvas ini dikau dapat memanipulasi Bitmap (representasi data gambar berupa pixel dalam array 2 dimensi 8-32 bit ; Mono, RGB-RGBA). Intinya untuk manipulasi graphics you must do it with TCanvas.
So, how to get the canvas object? Saat anda meload gambar menggunakan TPicture (TImage menggunakan TPicture) otomatis library akan mentransform data graphicnya ke TBitmap - property milik TPicture, dimana anda tetap bisa mengakses implementasi object gambarnya di propery Graphic (TGraphic) milik TPicture. See bagan:
- TPicture
- Bitmap: TBitmap; // raw data gambar
- Canvas: TCanvas; // Disini anda dapat memanipulasi data gambar (menambahi logo / text dll)
- Graphic: TGraphic; // implementor driver graphic format (Bisa: TJpegImage, TPngImage, TGifImage, TBitmap dll)
TCanvas memiliki banyak method utk manipulasi pixel data. Silahkan baca referensi / documentasinya.
Contoh utk menambahkan / menggambar logo:
Dest.Bitmap.Canvas.Draw(Logo.Graphic, X, Y);
// Dest adalah gambar utama, Logo adalah gambar logo
Setelah dikau memahami bagaimana bekerja dng graphic dalam Delphi langkah selanjutnya adalah mempraktekannya :D
more 14 years ago
reza_elka
Wow... mantap... sangat lengkap. Bener" exprert
aku coba dulu ya.....
Tks banget....
:) :) :)
more ...
- Pages:
- 1
- 2
reply |
Report Obsolete
AI Forward
🚀 We're thrilled to partner with Alibaba Cloud for "AI Forward - Alibaba Cloud Global Developer Summit 2025" in Jakarta! Join us and explore the future of AI. Register now:
https://int.alibabacloud.com/m/1000400772/
#AlibabaCloud #DeveloperSummit #Jakarta #AIFORWARD
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 5 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 6 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 13 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 13 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 13 years ago
Random Topic
- StringGrid or DBGrid???
by n3o_cybertech in Tutorial & Community Project more 18 years ago - Contoh Program Penjualan + Inventory
by andip70 in Hal umum tentang Pascal Indonesia more 18 years ago - intraweb di apache 2
by herux in onLinux more 18 years ago - [ask] penggunaan range pada isi record
by kepiss in Tutorial & Community Project more 13 years ago - ClamAV Delphi
by testing-ting in Tip n Trik Pemrograman more 19 years ago - E-book Delphi 2005
by Samurey in MySQL more 18 years ago - Delphi-id.Org Bangkit Lagi (?)
by LuriDarmawan in Hal umum tentang Pascal Indonesia more 17 years ago - cari buku!!!
by banja in Lain-lain more 16 years ago - alter table
by mas_kofa in MySQL more 17 years ago - XP Manifest in Delphi
by Manz in Enginering more 19 years ago
