我正在寻找从GtkDrawingArea获取pixbuf的最佳方法。我认为有两种方法可以做到这一点。
- 首先我可以使用
gdk_pixbuf_get_from_surface
。这可能很容易,但我只是在GtkDrawingArea中绘制了照片,而不是用cairo绘制的画 - 第二,
gdk_pixbuf_get_from_window
。这是我选择的方式,因为我认为它符合我的需求。事实上,我想要的只是在我的绘图区域快速快照,上面画着所有的标签和绘画
我的以下代码在GNU/Linux上按预期工作,但在Windows上,我得到了黑色png。有人能帮我解决这个问题吗?
gtk_widget_get_allocation(widget, &allocation_w);
GdkWindow *window = gtk_widget_get_parent_window(widget);
if (window) {
pixbuf = gdk_pixbuf_get_from_window(window, allocation_w.x, allocation_w.y, allocation_w.width, allocation_w.height);
if (pixbuf) {
file = g_file_new_build_filename(com.wd, filename, NULL);
g_free(filename);
stream = (GOutputStream*) g_file_replace(file, NULL, FALSE, G_FILE_CREATE_NONE, NULL, &error);
if (stream == NULL) {
if (error != NULL) {
g_warning("%sn", error->message);
g_clear_error(&error);
}
g_object_unref(pixbuf);
g_object_unref(file);
return;
}
gdk_pixbuf_save_to_stream_async(pixbuf, stream, "png", NULL,
snapshot_callback, (gpointer) g_file_get_basename(file), NULL);
g_object_unref(stream);
g_object_unref(pixbuf);
g_object_unref(file);
}
}
我现在有了答案。
从窗口获取pixbuf的API几乎是GTK启用X11时的残余。因此,不要期望它在GNU/LinuxX11环境之外工作。该函数也从GTK4 API中删除。
因此,最好的方法是使用gdk_pixbuf_get_from_surface
并重新绘制我需要的内容。
我想我也可以使用GtkOffscreenDow,但我没有资助任何使用示例。