上传从gnuplot canvas生成的html文件

时间:2013-07-22 18:42:52

标签: html canvas gnuplot

我使用gnuplot canvas制作了一个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的内容,似乎没问题。

感谢您的帮助!!

1 个答案:

答案 0 :(得分: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>
...

希望能解决您的问题。