Salvar TImage em GIF
Como faço para salvar a imagem que está em um TImage para um arquivo GIF?
Rodc
Curtidas 0
Respostas
Rodc
12/07/2006
sobe...
GOSTEI 0
Truck1n
12/07/2006
vc ta usando algum componente apra salvar ?
http://delphi.about.com/od/graphics/a/delphigif.htm
http://finn.mobilixnet.dk/delphi/gif-faq.txt
cara nao testei peloq ue eu vi funciona
Vlw caso use poste ae.
Abraços
http://delphi.about.com/od/graphics/a/delphigif.htm
http://finn.mobilixnet.dk/delphi/gif-faq.txt
cara nao testei peloq ue eu vi funciona
{
I´ve found in the axCtrls-Unit the TOLEGraphic Object. Now it´s easy
to display (all ?) many kinds of graphics at a TImage.
For this example you have to create a form with a button and a TImage
(I´ve named SampleImage). Now implement to following Code.
(Don´t forget to Replace ´C:\...\test.gif´ at the TFileStream.Create event)
}
uses axCtrls
...procedure TForm1.Button1Click(Sender: TObject);
var
OleGraphic: TOleGraphic;
fs: TFileStream;
begin
try
OleGraphic := TOleGraphic.Create;
fs := TFileStream.Create(´C:\...\test.gif´, fmOpenRead or fmSharedenyNone);
OleGraphic.LoadFromStream(fs);
SampleImage.Picture.Assign(OleGraphic);
finally
fs.Free;
OleGraphic.Free
end;
end;Vlw caso use poste ae.
Abraços
GOSTEI 0
Rodc
12/07/2006
Valew Truck1n, funcionou direitinho...
GOSTEI 0