How to save .fig Figure Background Color As Well As Saved Pict Format?

3 ビュー (過去 30 日間)
Tyann Hardyn
Tyann Hardyn 2022 年 4 月 5 日
コメント済み: Tyann Hardyn 2022 年 4 月 5 日
Hi, Community
I have a problem in saving my .fig file Matlab Format because when i try to save the graph from the opened .fig file, the background color Cannot be same as the background color of saved pict format result (.png, .jpg, etc). Here is the issue :
I want to save the histogram result from the above .fig file (with BLUE background) to the pict format, but the result is just like this :
But the result is always have No background... (White Color)...
How to fix this, everyone... Because im trying to search all of options in the .fig file toolbar or menu, and i still not found it.....
Thank you so much for the attention....
  6 件のコメント
Steven Lord
Steven Lord 2022 年 4 月 5 日
Use dot notation to change this property as shown in the example at the top of that page to which you linked.
h = plot(1:10);
% Find the figure handle
f = ancestor(h, 'figure');
% Or I could have used
% f = gcf;
f.Color = 'r';
Tyann Hardyn
Tyann Hardyn 2022 年 4 月 5 日
Thank you so much, Mr Steven.... Yeah, i should to notice how to give the color of my figure from figure handle..

サインインしてコメントする。

採用された回答

Jan
Jan 2022 年 4 月 5 日
You can set this property during the creation of the figure:
figure('InvertHardcopy', 'off');
Or dynamically later:
set(gcf, 'InvertHardcopy', 'off');
In the print dialog of figures there have been a checkbox for this property also. Therefore I've asked, how you start this export.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by