The Background Color Is Not Saved!
44 ビュー (過去 30 日間)
古いコメントを表示
I want to save this image with a gray background, but when I open the .jpg file, it appears with a white background.
h = gcf;
ax = gca;
ax.Color = [0.5 0.5 0.5];
saveas(h, 'image.jpg');
What is the solution to save the background color to the image file as well?
0 件のコメント
採用された回答
Image Analyst
2017 年 8 月 14 日
編集済み: Image Analyst
2022 年 3 月 31 日
Try getframe().
Starting with r2020b you can use exportgraphics():
exportgraphics(gca, fileName);
It should look just like it looks on screen.
0 件のコメント
その他の回答 (1 件)
Navid Ghajarnia
2022 年 3 月 31 日
The answer to this questionis given here:
Please execute the following command before you save the figure in the PNG format.
set(gcf, 'InvertHardcopy', 'off');
Then, you can save the plot as it is displayed.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!