Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
Tyann Hardyn
Tyann Hardyn le 5 Avr 2022
Commenté : Tyann Hardyn le 5 Avr 2022
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 commentaires
Steven Lord
Steven Lord le 5 Avr 2022
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 le 5 Avr 2022
Thank you so much, Mr Steven.... Yeah, i should to notice how to give the color of my figure from figure handle..

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 5 Avr 2022
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.

Plus de réponses (0)

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by