0

我使用 gnuplot 画布制作了一个 html 文件:

gnuplot> set terminal canvas
Terminal type set to 'canvas'
Options are ' solid butt size 600,400 fsize 10 lw 1 fontscale 1 standalone'
gnuplot> set output 'output.html'  
gnuplot> plot [0:25] sin(x)

但是当我在浏览器中打开 output.html 时,它什么也没显示,只是空白页。我查看了 output.html 的内容,似乎还可以。

谢谢你的帮助!!

4

1 回答 1

0

请检查 output.html :gnuplot 将自动生成如下行:

<script src="C:/yourpath/canvastext.js"></script>
<script src="C:/yourpath/gnuplot_common.js"></script>
...

虽然 Google Chrome 可以毫无问题地读取这些内容,但 Firefox 不会加载,除非您将这些行更改为:

<script src="file://C:/yourpath/canvastext.js"></script>
<script src="file://C:/yourpath/gnuplot_common.js"></script>
...

希望可以解决您的问题。

于 2014-01-05T03:53:23.497 回答