网页上画曲线图(100分)

  • 主题发起人 主题发起人 netsjp
  • 开始时间 开始时间
N

netsjp

Unregistered / Unconfirmed
GUEST, unregistred user!
我看见有一些网上股票系统可以画曲线图,怎末作,有哪些办法
 
根据x坐标生成y的坐标啊!!!就是画点
 
有些是生成的一个GIF文件然后传到页面中。你也可以用Java或ActiveX嵌入到网页中。
 
to 吕雪松:
生成的一个GIF文件是不是得用CGI呀?有相关的例子吗?

 
Delphi中自带的例子:
procedure TCustomerInfoModule.CustomerInfoModuleGetImageAction(
Sender: TObject; Request: TWebRequest; Response: TWebResponse;
var Handled: Boolean);
var
Jpg: TJpegImage;
S: TMemoryStream;
B: TBitmap;
begin
Jpg := TJpegImage.Create;
try
B := TBitmap.Create;
try
B.Assign(BioLifeGraphic);
Jpg.Assign(B);
finally
B.Free;
end;
S := TMemoryStream.Create;
Jpg.SaveToStream(S);
S.Position := 0;
Response.ContentType := 'image/jpeg';
Response.ContentStream := S; // do not free the stream because the response
// object will handle that task.
finally
Jpg.Free;
end;
end;
 
知道什么地方有这种源程序的下载吗?如果有告诉我:celeries@21cn.com
ASP的等。
 
netsjp:如果要继续请提前,否则请结束问题,谢谢
 
接受答案了.
 
后退
顶部