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

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

[Octave-bug-tracker] [bug #56473] print error with Octave 5.1.0


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #56473] print error with Octave 5.1.0
Date: Fri, 14 Jun 2019 07:17:12 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0

Update of bug #56473 (project octave):

             Open/Closed:                    Open => Closed                 

    _______________________________________________________

Follow-up Comment #5:

We don't have a print dialog that would allow fine tuning the printing
options, but the good news is that you can create your own menus:


function print_ogl (h)
  [f, fdir] = uiputfile ({"*.gif;*.jpg;*.png;*.tiff", "Bitmap Image Formats"},
"Figure file name", "myfig.png");
  if (ischar (f))
    fname = fullfile (fdir, f);
    print (gcbf (), "-opengl", fname);
  endif   
endfunction

hmain = uimenu ("label", "Print");
h1 = uimenu (hmain, "label", "print with -opengl", ...
             "callback", @print_ogl);


Closing report as a duplicate of multiple others.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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