我正在尝试使用gnuplot 4.2生成具有透明背景的PNG。但是,背景显示为黑色而不是白色,并且在其他查看器中不透明。我生成jpegs,gif或emfs时背景为白色。我正在使用Windows 7。
以下是我使用的代码段:
set terminal png size 600,600 transparent truecolor
set style data points
set xyplane at 000;
set output "image.png"
splot "data1.txt" using 1:3:5 title ""
unset output
非常感谢任何建议。