Registriert seit: 23. Jan 2008
3.685 Beiträge
Delphi 2007 Enterprise
|
AW: Vielfaches der Zahl 4 an Pixel einer Bitmap
19. Nov 2019, 10:54
Meine Idee:
Delphi-Quellcode:
if CheckBox1.Checked then
begin
if FTexturBitmap.Width mod 4 <> 0 then
cxImage1.Picture.Bitmap.Width := Round(cxImage1.Picture.Bitmap.Width / 4) * 4;
if FTexturBitmap.Height mod 4 <> 0 then
cxImage1.Picture.Bitmap.Height := Round(cxImage1.Picture.Bitmap.Height / 4) * 4;
end;
"When one person suffers from a delusion, it is called insanity. When a million people suffer from a delusion, it is called religion." (Richard Dawkins)
|