将Gadfly直接渲染到Gtk画布上

时间:2014-06-06 22:06:26

标签: gtk julia gadfly

是否可以将Gadfly图直接渲染到画布?我想用gtk开发一个Julia GUI,它渲染了Gadfly图。

我希望有类似的内容:

some_plot = plot(x=[1,2,3],y=[4,5,6])
draw(ctx::CairoContext, some_plot)

draw(c::GtkCanvas, some_plot)

我当前的方法是保存png,然后加载图像。显然不是最优的:

ctx = getgc(canvas)
canvas_w = width(canvas)
canvas_h = height(canvas)

save(ctx)
set_source_rgb(ctx,1,1,1)
rectangle(ctx,0,0,canvas_w,canvas_h)
fill(ctx)
restore(ctx)

some_plot = plot(x=[1,2,3],y=[4,5,6])
draw(PNG("myplot.png", 8inch, 4inch), some_plot)

save(ctx)
image = read_from_png("myplot.png")
w = image.width
h = image.height
translate(ctx, canvas_w/2, canvas_h/2)
scale(ctx, canvas_w/w, canvas_h/h)
translate(ctx, -0.5*w, -0.5*h)
set_source_surface(ctx, image, 0, 0)
paint(ctx)
restore(ctx)

谢谢

1 个答案:

答案 0 :(得分:2)

你应该看看Tim Holy的软件包Immerse,它可以通过我的软件包Plots访问它。

Immerse创建了Gadfly上下文,并通过一些额外的交互功能将它们呈现给Gtk画布。