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

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

[Octave-bug-tracker] [bug #45028] Use "visible", "off" for printing


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #45028] Use "visible", "off" for printing
Date: Wed, 06 May 2015 09:31:48 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0

Follow-up Comment #9, bug #45028 (project octave):

Printing invisible figures currently doesn't work on windows so this may not
be a cross-platform solution ATM.

FTR, instead of using copyobj, you may want to use something like


hf = figure ();
## plot in this figure
s = hdl2struct (hf);
s.properties.visible = "off";
htmp = struct2hdl (s, 0);
print (htmp, ...)
...


hdl2struct/struct2hdl is basically what is used in copyobj.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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