Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Circular spectrum visualizer
4. Apr 2019, 12:40
RGBQuad^ := Pixel
statt GDIP_BitmapSetPixel
:
Delphi-Quellcode:
if alpha >= d then
Pixel.rgbReserved := alpha - d
else
Pixel.rgbReserved := 0;
RGBQuad^ := Pixel;
Theoretisch geht auch einfach:
Delphi-Quellcode:
for Col := 0 to BitmapData.Width - 1 do
begin
alpha := RGBQuad^.rgbReserved;
if alpha >= d then
RGBQuad^.rgbReserved := alpha - d
else
RGBQuad^.rgbReserved := 0;
inc(RGBQuad);
end;
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
Geändert von Neutral General ( 4. Apr 2019 um 12:44 Uhr)
|