在我的gnuplot案例中,我需要在画布上用各种字体绘制一些文本标签。代码如下:
set term gif
set output "runtime_distribution.gif"
set label 1 "stage" at 84.971, 3.25 center front textcolor rgb "#000000" font "arial,19"
但出现以下错误消息:
gdImageStringFT: Could not find/open font while printing string stage with font arial
似乎gif终端不支持这种字体。但我也用它
set xtics rotate by -45 font "arial,9"
可以按预期更改xlablel的文本字体。
根据gnuplot手册,set label
命令也支持字体功能。那么这个奇怪问题的原因是什么?