由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
BuildingWeb版 - 新手请教:如何将Unix下画图软件的图即使显示到网页上
相关主题
remote API 's output?请问便宜的网页空间; 不要有广告的; 流量小没关系
no cache CGI output再问个JavaScript 网页上 Rendering的速度问题
请推荐“所见即所得的”工具找一些自动生成网页的软件?
Show off一下一天画出来的,欢迎拍砖 (转载)请教大家这样的网页是用了什么工具做出来的
CGIGoogle网站的图片link
how to add cgi module in apache?window hosting上传网页的问题
事实证明还是CGI程序解释的快,可能和它的SERVER是在UNIX/LINUX上的缘故如何强制PHP生成的网页utf-8
Re: 事实证明还是CGI程序解释的快,可能和它的SERVER是在UNIX/LINUX上的一个简单的动态网页设计问题
相关话题的讨论汇总
话题: unix话题: cgi话题: output话题: image话题: 网页
进入BuildingWeb版参与讨论
1 (共1页)
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的话,如何调用这个图形文件?谢谢
1 (共1页)
进入BuildingWeb版参与讨论
相关主题
一个简单的动态网页设计问题CGI
请问:这样的功能的网页一般用啥写?how to add cgi module in apache?
user interface方面好找工作吗?事实证明还是CGI程序解释的快,可能和它的SERVER是在UNIX/LINUX上的缘故
cgi-bin options in apache server?Re: 事实证明还是CGI程序解释的快,可能和它的SERVER是在UNIX/LINUX上的
remote API 's output?请问便宜的网页空间; 不要有广告的; 流量小没关系
no cache CGI output再问个JavaScript 网页上 Rendering的速度问题
请推荐“所见即所得的”工具找一些自动生成网页的软件?
Show off一下一天画出来的,欢迎拍砖 (转载)请教大家这样的网页是用了什么工具做出来的
相关话题的讨论汇总
话题: unix话题: cgi话题: output话题: image话题: 网页