0

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 の内容を見てみましたが、大丈夫そうです。

助けてくれてありがとう!!

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 に答える