web-dev-qa-db-fra.com

J'utilise gnuplot pour générer du png mais je ne peux pas ouvrir les images png

J'utilise gnuplot pour mettre une image png. Ensuite, l'image a été générée, mais je ne peux pas l'ouvrir. Quelle est la raison? Je peux ouvrir d'autres images png sur l'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
Ma Xiaoyao

_set terminal emf_ signifie que vous créez un fichier EMF . Le fait que vous ayez défini le nom de fichier pour utiliser _.png_ ne signifie pas qu'il deviendra par magie un fichier PNG. Si vous voulez créer des fichiers PNG avec gnuplot, utilisez set terminal png .

1
muru