Autor Beitrag
elzer
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 17



BeitragVerfasst: Do 20.11.08 22:31 
Hi Leute, ich möchte in meinem Programm ein Bild per ButtonClick in ein TImage laden, es funktioniert auch alles einwandfrei (*.bmp;*.ico;*.emf;*.wmf) außer *.jpg und *.jpeg

Hier mal der Quelltext:
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
procedure TForm1.DurchsuchenClick(Sender: TObject);
begin
  if opendialog1.Execute then
    begin
    Edit1.Text:=opendialog1.FileName
    end
end;

procedure TForm1.LadenClick(Sender: TObject);
begin
Image1.Picture.LoadFromFile(Edit1.Text);
end;


Es kommt dann die Fehlermeldung: Unbekannte Bilddateierweiterung (.JPG) //bzw (.JPEG)

Eigentlich ein total einfaches Programm, aber ich finde den Fehler nicht. Hoffe ihr könnt mir helfen :)

LG Chris
turboPASCAL
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 193
Erhaltene Danke: 1

Win XP / Vischda
D6 PE / D2005 PE
BeitragVerfasst: Do 20.11.08 22:40 
Binde mal bitte in der Uses-Klausel die Unit "Jpeg" mit ein.

ausblenden Delphi-Quelltext
1:
2:
uses
  Windows, Messages, SysUtils, ... Forms, Dialogs, JPEG;

_________________
Nein, ich bin nicht der turboPASCAL aus der DP, ich seh nur so aus... :P
elzer Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 17



BeitragVerfasst: Do 20.11.08 22:44 
ahhh dass ich da nich von selbst drauf gekommen bin xD
danke, dir; es geht :)