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

조회 수: 8 (최근 30일)
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 CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by