FullGraphics
hasn't worked entirely for a long time and the situation appears to be getting worse instead of better. In Mathematica 10.0, 10.1 up to 11.3 a simple usage throws numerous errors and returns a graphic without ticks and with the wrong aspect ratio:
Plot[Sin[x], {x, 0, 10}] // FullGraphics
Axes::axes: {{False,False},{False,False}} is not a valid axis specification. >>
Ticks::ticks: {Automatic,Automatic} is not a valid tick specification. >>
(* etc. etc. *)
This may be caused by or related to More Ticks::ticks errors in AbsoluteOptions in v10.
It seems that I must go back to version 5 functionality if I want this function to work right:
<< Version5`Graphics` (* load old graphics subsystem *)
Plot[Sin[x], {x, 0, 10}] // FullGraphics
I wonder at this point if there is any indication that FullGraphics
and perhaps also AbsoluteOptions
are still supported? Or has something to the contrary has been written (Wolfram blog, a developer's comment, etc.) that indicates these should be removed from the documentation now?
With FullGraphics
broken is there a method that can take its place for producing proper Graphics
directives that may be further manipulated and combined, not merely vectorized outlines?
Comments
Post a Comment