I often draw graphs on the gnuplot command line, for example:
gunuplot> plot sin(x) with linespoints pointtype 3
and the figure seemed gorgeous.
Today I save the graph in a .png file, for example:
gnuplot> set term png gnuplot> set output "output.png" gunuplot> plot sin(x) with linespoints pointtype 3
Then I open output.png with eog in Ubuntu, for example:
$ eog output.png
I found that output.png displayed in eog is not as good as a drawing built on the command line.
Why? Do I need to configure some parameters before saving output.png ?
PS
I found that around him, firstly,
set term postscript set output "output.ps"
then in linux shell
$ convert output.ps output.jpg
This method solves my problem.
gnuplot
Alcott Jan 31 2018-12-12T00: 00Z
source share