我有一个由 CGI 脚本创建的图像..如果您直接调用该脚本,它会很好地显示出来。
Content-type: image/jpeg
但是我需要将其嵌入到页面中,无论我怎么尝试,浏览器都只会显示原始数据。我尝试了八位字节流、二进制和其他一些方法,但都无济于事。
#!/bin/bash
echo "Content-type: image/jpeg"
echo ""
/usr/bin/xearth -pos fixed/10/144.96 -shade -size 320/320 -gif |convert gif: jpeg:-
。
<!--#include file="head.shtml" -->
<!--#exec cgi="/cgi-bin/xearth.cgi" -->
<!--#include file="tail.shtml" -->
A
答案1
我确信我在发帖之前尝试过这种方法。然而,它又回来了,说是从另一个来源这样做。所以我以前一定是搞砸了,因为现在这种方法肯定管用。