Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Library: Grafik / Sound / Multimedia (https://www.delphipraxis.net/21-library-grafik-sound-multimedia/)
-   -   Delphi Bitmap mit 64x64 Pixeln und True Color aus Resource-DLL (https://www.delphipraxis.net/2624-bitmap-mit-64x64-pixeln-und-true-color-aus-resource-dll.html)

Daniel B 30. Jan 2003 23:18


Bitmap mit 64x64 Pixeln und True Color aus Resource-DLL
 
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
  BitMap1: TBitMap;
begin
  BitMap1 := TBitMap.Create;
  try
    BitMap1.LoadFromResourceName(HInstance,' DASBITMAP');
    Canvas.Draw(12, 12, BitMap1);
  finally
    BitMap1.Free;
  end;
end;
Von Luckie!

Grüsse, Daniel :hi:


Alle Zeitangaben in WEZ +1. Es ist jetzt 03:57 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz