You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Compose
import Cairo, Fontconfig
X = [0.0470.870.950.93;
0.220.010.210.7;
0.860.850.950.21]
point_array = [[(x1,y1), (x2,y2)] for (x1,y1,x2,y2) inzip(X[:,1],X[:,2],X[:,3],X[:,4])]
img =compose(context(),
(context(), line(point_array), stroke(["red","green","deepskyblue"]), arrow())
)
pb =PipeBuffer();
show(pb, MIME("image/png"), img);
As before, during writing to the PipeBuffer, the following output can be observed on the REPL, which is unwanted behavior - we are not trying to write to stdout:
This follows issue GiovineItalia/Gadfly.jl#1621
Here is a MWE involving only Compose functions, adapted from the example arrow.jl
As before, during writing to the
PipeBuffer
, the following output can be observed on the REPL, which is unwanted behavior - we are not trying to write to stdout:The text was updated successfully, but these errors were encountered: