Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Multimedia (https://www.delphipraxis.net/16-multimedia/)
-   -   Delphi Gif und TBitmap (https://www.delphipraxis.net/52379-gif-und-tbitmap.html)

Hallo_Thomas 29. Aug 2005 10:22


Gif und TBitmap
 
Hallo, bei mir erscheint immer die Fehlermeldung"Bitmap ist ungültig".
Wie mach ichs richtig.(hab auch die Jedi Komponeten)


Delphi-Quellcode:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs;

type
  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
  private
    Bild:          TBitmap;
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
  Bild := TBitmap.Create;
  Bild.LoadFromFile(ExtractFilePath(ParamStr(0)) + '\Bilder\Bild1.gif');
end;

leddl 29. Aug 2005 10:29

Re: Gif und TBitmap
 
:gruebel: Ich arbeite selten mit TBitmap, aber suggeriert nicht schon der Name, daß es evtl nur Bitmaps (.bmp) schluckt? Ich habs allerdings bisher auch noch nie mit was anderem als bmp's probiert.

fylo 29. Aug 2005 10:31

Re: Gif und TBitmap
 
Hi

um GIF's mit Delphi zuverarbeiten benötigst du zusätzliche Units. Such mal bei Google nach Bei Google suchendelphi gif
oder hier:
The original TGIFImage can be found at
http://www.melander.dk/delphi/gifimage/
Note: His website is offline at the moment.

oder hier:
http://home20.inet.tele.dk/tolderlund/delphi/

http://finn.mobilixnet.dk/delphi/

dizzy 29. Aug 2005 10:32

Re: Gif und TBitmap
 
@leddl: So ist es
Und dass du die Jedis hast ist für deinen Codesnippet egal - du verwendest sie nirgends ;)

Hallo_Thomas 29. Aug 2005 10:36

Re: Gif und TBitmap
 
@ Leddl
Ja, hast ja recht, haber ich hab halt noch nix anderes gefunden,ich weis nur hier liegt der Fehler.

Ich wollte meine Bitmaps auf gif umstellen, denn wenn ich Stretch auf true stelle und die Bildergrösse sich bei meinen Transparenten Bitmaps verändert, spinnt die Grafik rum, das ist bei gif´s nich der Fall.

Bitmap 29. Aug 2005 11:00

Re: Gif und TBitmap
 
Liste der Anhänge anzeigen (Anzahl: 1)
Hallo 'Hallo_Thomas'

Ich habe mal vor einiger Zeit folgede Unit im Internet gefunden: GraphicsConversionsLibrary.pas (habe sie Dir angehängt).

Dort findest Du die Procedure 'LoadGraphicsFile' mit der du sämtliche Grafikformatdateien laden kannst und immer eine Bitmap zurück bekommst.

Viel Spass beim Ausprobieren :zwinker:

Hallo_Thomas 29. Aug 2005 11:10

Re: Gif und TBitmap
 
Okido, ich danke dir


Alle Zeitangaben in WEZ +1. Es ist jetzt 21:56 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