how to save figures without margin?
19 次查看(过去 30 天)
显示 更早的评论
as the title, I need to save the figures or images shown in the figure with the same size of the image.
but there are always margins as shown in the following: (the size is 604x593)
the orginal image is : (the size is 500x430)
how to save figures without margin?
0 个评论
采纳的回答
Valeriy
2020-2-23
Try:
axis off; % If you have axis titles, labels, etc.
set (gca,'Position',[0 0 1 1]);
print(gcf,'Test.jpg', '-djpeg', '-r300');
2 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!