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: Wed, 12 Jun 2019 15:38:13 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0

Update of bug #56473 (project octave):

                  Status:               Need Info => Duplicate              

    _______________________________________________________

Follow-up Comment #3:

Your use case meats many known bugs:
* Bug #33118: The -opengl renderer doesn't handle rotated text (labels here)
better than on-screen and, Octave chooses to use the -painters renderer
instead, even for raster outputs. 
If you are happy with the on-screen result (multiples of 90° rotation), and
that you only want raster outputs (like JPEG or GIF) then you can force the
-opengl renderer


print -djpg -opengl TV1_opengl;


* Bug #48689: You are using the axis command to only show part of the contour
patches, but then you hit a bug in Mesa opengl driver. The output of the
-painters renderer is huge, overly complicated and corrupted, which
Ghostscript (used for conversion to JPEG)  doesn't seem to like on Windows.
Note that on linux it takes ages to get a readable but huge and ugly JPEG
file.
The easiest workaround is to resize your contour instead of changing axes
limits: 


VX=load('MXTV1.txt');
VY=load('MYTV1.txt');
MZ=load('MZTV1.txt');
stop_row = 60;
VY = VY(1:stop_row);
MZ = MZ(1:stop_row,:);
...
axis auto
print -djpg TV1_painters;


* Bug #52764: The warning is due to the non ascii charater "ú". You can
workaround this one using the "-svgconvert" option:


...
axis auto
print -djpg -svgconvert TV1_painters_svg;


Does this cover all the issues you raised? 

    _______________________________________________________

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]