Arsip: konveris jpg ke bmp

more 17 years ago
bogem
mau nanya nich, skrip yang bisa konversi file gambar jpg ke bmp
makasih atas jawabannya

more 17 years ago
delphi_tikuzz
dari torry...
uses
JPEG;
procedure JPEGtoBMP(const FileName: TFileName);
var
jpeg: TJPEGImage;
bmp: TBitmap;
begin
jpeg := TJPEGImage.Create;
try
jpeg.CompressionQuality := 100; {Default Value}
jpeg.LoadFromFile(FileName);
bmp := TBitmap.Create;
try
bmp.Assign(jpeg);
bmp.SaveTofile(ChangeFileExt(FileName, '.bmp'));
finally
bmp.Free
end;
finally
jpeg.Free
end;
end;
{
CompressionQuality (default 100):
Set a value between 1..100, depending on your need of quality and
image file size. 1 = Smallest file size, 100 = Best quality.
Mit CompressionQuality können Sie die Qualität der Komprimierung für die
JPEG-Grafik festlegen (Default ist 100), wenn diese gespeichert wird.
Eine höhere Komprimierung ergibt eine etwas schlechtere Bildqualität,
dafür aber eine kleinere Datei.
1 = kleinste Dateigrösse, 100 = beste Qualität
}

more 17 years ago
sketsa
duh sangat berguna skali nich...
mas saya mau nanya... gimana ya caranya kalo mau ngekonversi dari BMP ke JPG (biar file nya lebih kecil)?
kaya komresi gitu.....
mohon bantuannya mas ya.....
kalo ada info tolong kasih tau saya mas ya di : luwin_03@yahoo.com

more 17 years ago
ivan
@sketsa
Untuk mengecilkan file jpeg, bisa diset dengan menurunkan CompressionQuality nya, tentunya dengan resiko kualitas gambar menjadi turun
more ...
- Pages:
- 1
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 4 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 5 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 12 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 12 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 12 years ago
Random Topic
- Bagaimana format desimal di Access lewat Delphi
by didiksh in Enginering more 19 years ago - menghitung invers cos...???
by alvian_tc in Tip n Trik Pemrograman more 15 years ago - bingung bikin project baru di delphi 2007
by hackinds in Hal umum tentang Pascal Indonesia more 17 years ago - Soal Sql Server 2005
by juan81 in Hal umum tentang Pascal Indonesia more 17 years ago - Penting bagi pemula
by wi2nt in Hal umum tentang Pascal Indonesia more 15 years ago - Minta source code buat game perang*an pake delphi donk
by belajaraja in Games more 17 years ago - Connect lazarus ke mysql , tanya.
by mambamaestro in MySQL more 16 years ago - tanya TLabel
by tAtA in Tip n Trik Pemrograman more 14 years ago - Menyimpan *.wav di paradox
by abdhe in Bedah Kasus more 17 years ago - ospek
by Alfando in OOT more 16 years ago