How can I disable font smoothing within a figure annotation textbox?
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I want to globally disable font smoothing for all text entries within figures, since smoothed text looks very poor.
I can toggle font smoothing for all axes elements (Title, Ticks,Labels) and I found in the forum how to do it for the legend.
But I can not find how to do it for the annotation textbox. Global setting for the figure or axes does not affect the annotation box.
How can I switch the smoothing off for text in an annotation?
I use Matlab 2015b
0 comentarios
Respuestas (1)
  Morteza T
 el 11 de Mzo. de 2016
        You can change the graphic smoothing attribution of any object off or on like easily. for whole figure you can do like this:
 f = figure(1);
 f.GraphicsSmoothing = 'off';
Ver también
Categorías
				Más información sobre Annotations en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

