var
Form1: TForm1;
bmp: TBitmap;
Time, xx: Integer;
//
procedure TForm1.Render(Sender: TObject; var Done: Boolean);
begin
Time := (Time + 1) mod 100;
if Time = 0 then
begin
Inc(xx);
Canvas.lock;
with Bmp.Canvas do
begin
Brush.Color := clBlack;
Brush.Style := bsSolid;
FillRect(bounds(0, 0, Width, Height));
Font.Name := 'Arial black';
Font.Size := Form1.Height div 3;
Font.Color := clwhite;
Brush.Style := bsClear;
TextOut(Form1.Width - xx, 0, 'Yet another flickerless text scroller! Made in delphi!');
end;
Application.ProcessMessages;
Canvas.draw(0, 0, bmp);
// canvas.CopyRect(bounds(0,0,width,height),offbmp.canvas,bounds(0,0,width,height));
// canvas.bitbl
end;
Done := False;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
bmp := TBitmap.Create;
bmp.Width := Form1.Width;
bmp.Height := Form1.Height;
with Bmp do
begin
Canvas.Brush.Color := clBlack;
Canvas.FillRect(bounds(0, 0, Width, Height));
end;
Application.OnIdle := render;
end;
procedure TForm1.FormResize(Sender: TObject);
begin
bmp.Width := Form1.Width;
bmp.Height := Form1.Height;
with Bmp do
begin
Canvas.Brush.Color := clBlack;
Canvas.FillRect(bounds(0, 0, Width, Height));
end;
end;
Render Canvas Font Scroller
Abonnieren
Posts (Atom)
Beliebte Posts
-
Network Source Code Update Source Code Network Update : https://asciigen.blogspot.com/p/network.html Send Message 1.0 Source Server Client ...
-
Windows Key Sniffer 0.82 - Update 08/2024 Der Windows Key Sniffer hat mir im Laufe der Zeit viel Arbeit erspart und unterstützt, viele Wi...
-
Windows Defender Bypass Version 0.75 - Update 11/2024 Den Windows 10-eigenen Virenschutz Defender kann man auf mehreren Wegen abschalten,...
-
ASCii GIF Animator Update Version 0.68 (32 bit) - 11/2024 Bei dieser überarbeiteten Version ist die Kompatibilität zu den verschiedenen GIF...
-
MD5 Hacker v.0.26 - Update 08.2024 MD5 Hashs sollten eigentlich nicht entschlüsselt werden können. Jedoch gibt es Tools, mit welchen auch ...
-
Host Editor Version 0.64 - Update 11/2024 Hosts File Editor allows for the easy editing of host files and backup creation. Create your own h...
-
Dir Sniffer Version 0.08 - Update 08/2024 Dir Sniffer ist ein kleines aber nützliches Tool um herauszufinden, was ihr Programm auf ihrem...
-
Oldskool Font Generator v.0.29 - Update 11/2023 Das Tool stell 508 Bitmap Fonts zu Verfügung. Eigene Fonts können integriert werden, sie...
-
ASCii Text Creator v.0.24 - Update 11.2023 * Add BugFix Gui Move Message Send * Add 447 Figlet Font Pack * Fixed Invert Unicode Function * ...
Keine Kommentare:
Kommentar veröffentlichen