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

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

[Octave-bug-tracker] [bug #55999] Display images larger than GL_MAX_TEXT


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #55999] Display images larger than GL_MAX_TEXTURE_SIZE
Date: Sat, 6 Apr 2019 16:16:04 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:65.0) Gecko/20100101 Firefox/65.0

Follow-up Comment #15, bug #55999 (project octave):

@Charles:I think what you observe is expected.
By default, the figure size in printout is given by the figure's
"paperposition" property. This means, prior to printing, Octave resizes the
figure which does not do well with axes created this way ("subplot
("position", POS)"). 

You could try to change the default and obtain more or less the same as
onscreen (but it won't fit in a "usletter" page)


set (gcf, "paperpositionmode", "auto")
print -dpdfcrop file5.pdf


or let the "activepositionproperty" of subplots be "outerposition"


hax = get (gcf, "children");
set (hax(isaxes (hax)), "activepositionproperty", "outerposition")
print file6.pdf


or just leave more room for text when positioning axes manually. For
annotation objects, the problem is the same. 

Anyway, I think this is out of the scope of this report since the behavior you
observe has nothing to do with displaying large images. 

    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?55999>

_______________________________________________
  Message posté via Savannah
  https://savannah.gnu.org/




reply via email to

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