Fórum Salvar TImage em GIF #325211

12/07/2006

0

Como faço para salvar a imagem que está em um TImage para um arquivo GIF?


Rodc

Rodc

Responder

Posts

13/07/2006

Rodc

sobe...


Responder

Gostei + 0

14/07/2006

Truck1n

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

{
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


Responder

Gostei + 0

17/07/2006

Rodc

Valew Truck1n, funcionou direitinho...


Responder

Gostei + 0

Utilizamos cookies para fornecer uma melhor experiência para nossos usuários, consulte nossa política de privacidade.

Aceitar