-1

I am working on matlab gui now. I would like to display outline text like here :

example of text

But I can not find it...

Could it be possible to do it in matlab ? Is there any Option to display outline text ?

I would appreciate for any help/ advice please.

Suever
  • 64,497
  • 14
  • 82
  • 101
Agata
  • 141
  • 2
  • 14

1 Answers1

0

MATLAB does not support text decoration like this. You would need to specify a FontName when creating a text object and find a font that has an outline.

text(x, y, 'TEST', 'FontName', 'SomeFontWithOutline');

Your other option is going to use Java to display and decorate your text for you. Potentially relevant post

Community
  • 1
  • 1
Suever
  • 64,497
  • 14
  • 82
  • 101