是否可以将牛虻图直接渲染到画布上?我想使用 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)
谢谢