c****n 发帖数: 89 | 1 我的图片是用Unix下的xgraph生成的,在次之前,我需要通过我的网页
输入一些参数,然后Unix下一个程序根据这些参数生成画图需要的数据.
我现在希望把这些结果用Unix下工具生成图片然后即使显示在我的网页
上?请问我该用什么工具??? CGI? JAVA?? Thanks a lot.. //bow | s**********i 发帖数: 711 | 2
any language would do. either output to a temperary file and
link it to a webpage/redirect, or just output to standard out
and users just access this program though browser.
【在 c****n 的大作中提到】 : 我的图片是用Unix下的xgraph生成的,在次之前,我需要通过我的网页 : 输入一些参数,然后Unix下一个程序根据这些参数生成画图需要的数据. : 我现在希望把这些结果用Unix下工具生成图片然后即使显示在我的网页 : 上?请问我该用什么工具??? CGI? JAVA?? Thanks a lot.. //bow
| c****n 发帖数: 89 | 3 请问,如果是CGI的话,如何调用这个图形文件?谢谢
【在 s**********i 的大作中提到】 : : any language would do. either output to a temperary file and : link it to a webpage/redirect, or just output to standard out : and users just access this program though browser.
| s**********i 发帖数: 711 | 4
one of those two (well, three) ways:
1, output the image to a file under web dir, readable to all
and in your CGI, do something like:
print "location: http://myhost.mydomain.com/temp/output001.gif\n\n";
as only output
or, in your CGI, do something in output HTML
http://myhost.mydomain.com/temp/output001.gif">
2, open the image creating program with pipe in CGI like
open IMAGE, "program |";
in output part, do
print "content-type: image/jpeg\n\n\";
print while ;
you make necessar
【在 c****n 的大作中提到】 : 请问,如果是CGI的话,如何调用这个图形文件?谢谢
|
|