标签: matlab octave
我想将绘图作为Base 64编码的字符串打印到stdout。我怎么能这样做?
stdout
到目前为止,我可以通过
f = figure set(f, "visible", "off") plot([1,2,3,4]) print("MyPNG.png", "-dpng")
但我真的需要为png编写Base 64编码的字符串,而不必先将文件另存为png。