|
From: <br...@ph...> - 2006-06-26 20:18:35
|
Laurence A Williams wrote: > I'm using gnuplot 4.0 and I am having a terrible time trying to convert > and save the plot as a png image file. Part of the problem is a terminology mismatch. In gnuplot you don't "convert" or "save" plots. You generate plot output from commands, and it depends on the 'set terminal' state what kind of output format you get, and on 'set output' where it'll go. Please look up these commands in the help and it should all be clear. > Could you please send an answer with an example in syntax to solve this. set terminal push set terminal png set output 'myfile.png' # ... # your plotting commands, or a 'load' # ... set output set terminal pop |