Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi mehrere BMP’s in einem TImage zusammen darstellen? (https://www.delphipraxis.net/43180-mehrere-bmp%92s-einem-timage-zusammen-darstellen.html)

smart 30. Mär 2005 10:38


mehrere BMP’s in einem TImage zusammen darstellen?
 
Wie kann man mehrere BMP’s in einem TImage zusammen darstellen?

Flax 30. Mär 2005 10:42

Re: mehrere BMP’s in einem TImage zusammen darstel
 
Ist nicht möglich, soweit ich weiss.

Kannst aber die einzelnen bmps in ein bmp kopieren und dem TImage zuweisen.

smart 30. Mär 2005 10:47

Re: mehrere BMP’s in einem TImage zusammen darstellen?
 
Vielen Dank für den Tipp. Hast Du vielleicht ein Beispiel oder hast ein Tipp, wo ich ein Beispiel finden könnte.

Matze 30. Mär 2005 10:51

Re: mehrere BMP’s in einem TImage zusammen darstellen?
 
Aber folgendes geht auch:

Delphi-Quellcode:
BMP.LoadFromFile(FileName_1);
  Image1.Canvas.Draw(0, 0, bmp);

BMP.LoadFromFile(FileName_2);
  Image1.Canvas.Draw(100, 250, bmp);
;

Also als Beispiel.

smart 30. Mär 2005 10:54

Re: mehrere BMP’s in einem TImage zusammen darstellen?
 
Vielen Dank, Matze. Das klappt natürlich.


Alle Zeitangaben in WEZ +1. Es ist jetzt 22:47 Uhr.

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