我使用gnuplot输出png但是无法打开png图片

我使用gnuplot输出png但是无法打开png图片

我使用 gnuplot 输出了一张 png 图片,然后图片生成了,但是打不开,请问是什么原因?其他 png 图片在 ubuntu 上都能打开。

#! /usr/bin/gnuplot
set terminal emf size 1280,960 font '/usr/common/fonts/simsun.ttc,14'  
set style data histograms
set style fill transparent pattern 1 border
set grid
set title '有/无多AP协作下,AP吞吐量对比'
set output 'BSS吞吐量对比曲线.png'
set xlabel 'BSS'
set ylabel 'AP 吞吐量/Mbps'
#set xtics('BSS1' 0,'BSS2' 1,'BSS3' 2,'BSS4' 3,'BSS5' 4)
set xrange [-1:5]
set yrange [0:7000]
plot 'hewthroughput.txt' using 2:xticlabels(1) title '无多AP协作',\
'hewthroughput.txt' using 3:xticlabels(1) title '有多AP协作',\
'hewthroughput.txt' using ($1-1):($2+200):($2) with labels notitle,\
'hewthroughput.txt' using ($1-0.8):($3+200):($3) with labels notitle

答案1

set terminal emf意味着你创建 EMF 文件。您设置要使用的文件名.png并不意味着它会神奇地变成 PNG 文件。如果您想使用 gnuplot 制作 PNG 文件,请使用set terminal png

相关内容