我正在尝试在 matlab 中使用文本函数,并将其用作图像,如下所示:
text('HorizontalAlignment' , 'center' ,...
'position' , [.5 .5] ,...
'string' , 'HELLO' ,...
'FontName' , 'Arial' ,...
'FontSize' , 300 ,...
'BackgroundColor' , 'w');
axis off;
g=getframe(gca);
image=g.cdata;
close;
每次打开和关闭数字真的很困扰我。我用谷歌搜索,我发现保存 Matlab 图没有绘制它?但它并没有解决问题。我也试过set(gca,'Visible','off');
,但它也不起作用。