TGIFExportFormat

TGIFExportFormat
Hierarchy     Properties     Methods     

Unit
TeeGIF

Description
Use TGIFExportFormat to create and export the TeeChart in GIF format. The Class returns default export characteristics to be used when exporting a GIF image of the Chart.

TeeChart provides the means to create GIF Chart images but you should check use of GIF licensing stance with Unisys (http://unisys.com) for use of GIF LZW encoded images. The alternative RLE encoding is not subject to Unisys licenses.

Example

Uses TeeGIF;

procedure TForm1.BitBtn1Click(Sender: TObject);
var tmp:TGIFExportFormat;
begin
tmp:= TGIFExportFormat.Create;
tmp.Panel:=Chart1;
tmp.SaveToFile('c:\tempCharts\Chart1GIF.' + tmp.FileExtension);
tmp.Free;
end;