Eu uso o gnuplot para gerar png, mas não consigo abrir as imagens png

1

Eu uso o gnuplot para colocar uma imagem png. Então a imagem foi gerada, mas não consigo abri-la. Qual o motivo? Eu posso abrir outras imagens png no 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):(+200):() with labels notitle,\
'hewthroughput.txt' using (-0.8):(+200):() with labels notitle
    
por Ma Xiaoyao 19.09.2017 / 03:20

1 resposta

1

set terminal emf significa que você está criando um arquivo EMF . O fato de você ter definido o nome do arquivo para usar .png não significa que ele se tornará magicamente um arquivo PNG. Se você deseja criar arquivos PNG com o gnuplot, use set terminal png .

    
por muru 19.09.2017 / 04:37