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

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

[Octave-bug-tracker] [bug #56289] print to eps - clip option


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #56289] print to eps - clip option
Date: Wed, 8 May 2019 15:09:27 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0

Update of bug #56289 (project octave):

                Category:                    None => Plotting with OpenGL   
              Item Group:    Matlab Compatibility => Inaccurate Result      
                  Status:                    None => Confirmed              

    _______________________________________________________

Follow-up Comment #1:

The -tight option doesn't work great, it is known to corrupt figures in some
cases (see e.g. bug #55723). A possible workaround, is to change the axes
"looseinset" property so that it takes as much space in the figure as
possible:


plot (1:10);
xlabel ("XLabel")
ylabel ("YLabel")

li = get (gca, "looseinset")

## margins are necessary due to bug #53235
m = 0.01;
set (gca, "looseinset", [m m m m])
print toto.eps
set (gca, "looseinset", li)

 

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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