Why is saveas() changing my image aspect ratio?
4 次查看(过去 30 天)
显示 更早的评论
I'm trying to save a figure as a PNG but the aspect ratio changes for some reason.
This is how it looks in MATLAB:

This is how it looks when I save it (slightly elongated as you can see):

How can I fix this?
g = figure;
subplot(1,2,1)
imagesc(im1);
subplot(1,2,2)
imagesc(im2);
g.WindowState = 'maximized'; % this didn't work
saveas(g, name, "png");
0 个评论
回答(2 个)
Eamon Gekakis
2022-6-17
The exportgraphics function may be useful here, 'Resolution' is available as a name-value pair input argument.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!