5

我在 gnuplot 中使用 pngcairo 终端来生成图像。指定终端时,字体设置为“sans,9”。如何判断选择了哪种特定字体进行渲染?

终端命令:设置终端 pngcairo 字体 "sans,9" 大小 1500,1000

(编辑)更多信息:安装在 Windows 7 操作系统下。我只需要在 gnuplot 4.4.4 中找到给定语句使用的字体,该字体用于创建许多绘图。gnuplot 4.6.0 决定为同一语句使用不同的字体,实际上不可能重新渲染所有早期的绘图以匹配。

4

1 回答 1

3

我创建了一个文件test.gp

set terminal pngcairo font "sans,9" size 1500,1000
set output "test.png"
plot sin(x)

在下运行 gnuplotstrace

strace -o st.out gnuplot test.gp

grep

grep 'open.*/usr/share/font.*' st.out 

给我 ( Linux 3.0.0-22-generic #36-Ubuntu)

open("/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf", O_RDONLY) = 5
于 2012-07-23T20:50:00.903 回答