将绘图打印为base64编码的字符串到stdout

时间:2015-07-25 07:09:01

标签: matlab octave

我想将绘图作为Base 64编码的字符串打印到stdout。我怎么能这样做?

到目前为止,我可以通过

打印到png
f = figure
set(f, "visible", "off")
plot([1,2,3,4])
print("MyPNG.png", "-dpng")

但我真的需要为png编写Base 64编码的字符串,而不必先将文件另存为png。

0 个答案:

没有答案