尝试将GTK +窗口渲染为图像

时间:2014-01-17 09:56:24

标签: c++ gtk cairo

GTK使用cairo进行绘图。所以我正在尝试创建一个写入图像(svg,png,...)而不是X11的hello world应用程序。我面临两个问题: - 图像为空 - 在没有运行X11(这是实际目标)的情况下启动时,我收到错误“**(a.out:9021):警告**:无法打开X显示”

代码是草稿!

#include <string>
#include <iostream>
#include <thread>
#include <chrono>
#include <cmath>

#include <cairo.h>
#include <cairommconfig.h>
#include <cairomm/context.h>
#include <cairomm/surface.h>
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>

int main(int argc, char *argv[])
{

  gtk_init(&argc, &argv);
  GtkWidget *window;
  GtkWidget *button;
   //   GtkWidget *main_window = gtk_initialize();

  window = gtk_offscreen_window_new();

  button = gtk_button_new_with_label ("Hello World");
  gtk_container_add (GTK_CONTAINER (window), button);
  gtk_widget_show  (window);
  GdkWindow *gdk_window = gtk_widget_get_window(GTK_WIDGET(window));
  std::cout << "gdk window: " << gdk_window << std::endl;
  cairo_surface_t * surfp =  gdk_offscreen_window_get_surface(gdk_window);
  std::cout << "Created Window will now draw to png" << std::endl;

  std::string filename = "image.svg";
  double width = 600;
  double height = 400;

  Cairo::SvgSurface srfobj(surfp);

  Cairo::RefPtr<Cairo::SvgSurface> refptr(&srfobj);

  Cairo::RefPtr<Cairo::Context> cr = Cairo::Context::create(refptr);

  cr->save(); // save the state of the context
  cr->show_page();

  std::cout << "Wrote SVG file \"" << filename << "\"" << std::endl;
  std::chrono::milliseconds dura( 200 );
  std::this_thread::sleep_for(dura);

  return 0;
}
  • 为什么这段代码不起作用?
  • 我可以运行没有运行X11的gtk应用程序,还是应该忽略警告?

3 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

您的两个问题的答案是,如果没有某种输出,您将无法运行GTK +应用程序。您正在使用需要XServer的gtk-x11。你可能对DirectFB后端有一些运气,但我不会屏住呼吸,因为我不知道它是否已经被维护了。

由于Gtk在没有XServer的情况下不运行,因此生成的图像为空。

答案 2 :(得分:1)

这是我基于您的示例代码的解决方案-请记住,这是一个肮脏的解决方案,在使用新版本的GTK3时可能无法使用。它可以保存窗口的UI(仅使用一个按钮进行测试),但仍需要(在某个地方)运行的X服务器。它还会忽略/不使用图片大小的设置-您必须自行调整大小。我不知道是否也可以(以及如何)剪切此字符串(X-Server // X-Framebuffer)(似乎不再真正支持DirectFB),但是...

玩得开心!

// Default
#include <string>
#include <iostream>
#include <thread>
#include <chrono>

// cairo / cairomm / gtk
#include <cairo.h>
#include <cairomm/context.h> //libcairomm-1.0-dev
#include <gtk/gtk.h>

int main(int argc, char *argv[]) {
    // Init
    gtk_init(&argc, &argv);

    // Create window with a button
    GtkWidget *window;
    GtkWidget *button;

    window = gtk_offscreen_window_new();
    button = gtk_button_new_with_label("Hello World");
    gtk_container_add(GTK_CONTAINER(window), button);
    gtk_widget_show_all(window);

    // Make a gdk window out of it, prepare cairo and draw it to it
    GdkWindow* gdk_window = gtk_widget_get_window(GTK_WIDGET(window));
    cairo_surface_t* surfp = gdk_offscreen_window_get_surface(gdk_window);
    cairo_t* context = cairo_create(surfp);
    gtk_widget_draw(GTK_WIDGET(window), context);

    // Yay - begin the dump!
    Cairo::SvgSurface srfobj(surfp);
    std::string filename = "image.png";
    srfobj.write_to_png(filename);
    std::cout << "Done." << std::endl;

    // Aaand a little sleep...
    std::chrono::milliseconds dura(1000);
    std::this_thread::sleep_for(dura);

    return 0;
}