octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #45865] text not rendering when plotting


From: Rik
Subject: [Octave-bug-tracker] [bug #45865] text not rendering when plotting
Date: Fri, 04 Sep 2015 16:09:31 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0

Follow-up Comment #4, bug #45865 (project octave):

There was a typo in the code I sent.  It needed a closing parenthesis to
execute.  Now that we know it is OpenGl only, try


close all
graphics_toolkit qt
text (0.5, 0.5, "0.1 0.5 Hello World 0.75 1.0")


One possibility is the font that was selected is not particularly well
rendered for some reason.  You could attempt to force it to a known good value
with the set() command.  Sample code:


close all
graphics_toolkit qt
plot (0:3);
set (gca, "fontname", "FILL_IN_A_GOOD_FONT")


On Linux you should be able to get a list of fonts available by using 


fc-list


from a shell command line.


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?45865>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]