我正在寻找一种使用 Vegas 将绘图渲染到本地文件系统上的 .png 文件的方法。就像是
val plot = Vegas("Country Pop")
.withData(
Seq(
Map("country" -> "USA", "population" -> 314),
Map("country" -> "UK", "population" -> 64),
Map("country" -> "DK", "population" -> 80)
)
)
.encodeX("country", Nom)
.encodeY("population", Quant)
.mark(Bar)
plot.missingMethodForSavingAFigure("path/to/dest.png")
不幸的是,我知道似乎不存在类似 .saveFigure 的方法。有没有人有任何建议的替代品?