is there a way that matlab can automatically change the font size of a figure, when the user changes the figure size?

23 visualizaciones (últimos 30 días)
my program changes the figure size through the command:
set(gcf,'paperunits','centimeters');
set(gcf,'paperposition',[1 1 a(1) a(1)*(1/a(2))]);
is there anyway that matlab can change the figure font size automatically?

Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de En. de 2014
That code does not change the figure size: it changes the output size for printing purposes.
When a figure is submitted for printing, normally it is resized. That resize can be detected through a figure callback, which can change any property it likes.
There is no MATLAB "change all font sizes" command, but you can findall() of property 'fontsize' and operate on those objects.
I found in my programming that it was common to have a mix of font sizes in a figure. To avoid having to keep track of the sizes individually, I set a property on each text object to reflect the relative font size, such as "+1" for an object with a large font size. I could then search for objects with that property and do relative changes, and afterwards when resizing back down after printing, I could re-adjust appropriately. I happened to use part of the Tag property for this purpose, but you could use UserData.
  1 comentario
Mohammad
Mohammad el 16 de En. de 2014
Thank you! I think you are the lord of matlab! but the problem is, that the figures are so different from eachother that I can't predict the possible situations.On the other hand the user gives the figur to the program!

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 16 de En. de 2014
When you create the controls, either in GUIDE or with uicontrol(), set the "units" property to "normalized". It will then scale the GUI proportionally as you drag the window larger or smaller.

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by