How can i keep the fontsize on colorbar when saving as JPEG, TIFF etc....
Mostrar comentarios más antiguos
I am producing graphs in Matlab to be converting as JPEG/TIFF for inclusion into documents. I use a font 30 on graphs. Everything saves as such except for the colorbar which return to a very small font 8/10. Does anyone knows the solution to this problem? Many thanks
Respuesta aceptada
Más respuestas (2)
Max Griggs
el 29 de Abr. de 2021
set(cH,'FontSize',30)
To this:
set(cH.Label,'FontSize',30)
8 Years later...😎
1 comentario
Reza Yahyaei
el 1 de Ag. de 2021
It already exists in my code
Reza Yahyaei
el 1 de Ag. de 2021
Since I already set the font size in my code, what I did was saving the figure programatically with:
saveas(gcf, 'filename.extension')
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!