
Gdk.Texture.save_to_png_bytes
Store the given texture in memory as a PNG file. Use gdk_texture_new_from_bytes() to read it back. If you want to serialize a texture, this is a convenient and portable way to do that. If you need more control over the generated image, such as attaching metadata, you should look into an image handling library such as the gdk-pixbuf library.
将Gdk.Texture.save_to_png_bytes - GTK 文档
将指定的 texture 存储为内存中的 PNG 文件。 使用 gdk_texture_new_from_bytes() 读取它。 如果您想序列化一个纹理,这是方便且易于移植的方式。
Gdk.Texture - GTK
GDK provides a number of threadsafe texture loading functions: gdk_texture_new_from_resource(), gdk_texture_new_from_bytes(), gdk_texture_new_from_file(), gdk_texture_new_from_filename(), gdk_texture_new_for_pixbuf(). Note that these are meant for loading icons and resources that are shipped with the toolkit or application.
GTK常用控件之图片控件( GtkImage ) - CSDN博客
2015年1月23日 · GtkImage 是 Gtk+图形库中用于展示图像的控件,它可以显示各种格式的图像数据,如像素图(PNG)、JPEG等。 压缩包子文件的文件名称列表: - demo3.1.2(GtkImage) 文件列表中只有一个文件名"demo3.1.2(GtkImage)",...
GdkPixbuf 的图像控件(GTK+2.0学习笔记) - CSDN博客
2013年8月9日 · Gdk::Pixbuf是GTK库极为重要的一个组件,从图标到图像控件,到处都可以看到它的身影,Gdk::Pixbuf让GTK使用图像资源变得轻松许多。 Gdk::Pixbuf的用法文档说的比较清楚了,就不再重复,值得注意的是,Pixbuf在内部如何存储图像文档并未详细说明,这会给使用带来一 …
利用gtk函数 linux桌面截图 保存成图片 - CSDN博客
本文介绍了一个使用GTK+2.0库实现的简单截图程序。 该程序能在启动后全屏截图并将其保存为JPEG格式的文件。 文章提供了完整的源代码示例,并展示了如何编译和运行程序。 GtkWidget *window; window= gtk_window_new (GTK_WINDOW_TOPLEVEL); . GdkScreen *screen = gdk_screen_get_default (); . GdkWindow * root_window = gdk_get_default_root_window (); .
gtkmm: Gdk::Texture Class Reference - GNOME
Store the given texture in memory as a PNG file. Use new_from_bytes() to read it back. If you want to serialize a texture, this is a convenient and portable way to do that.
save current window as image using gtk# - Stack Overflow
2016年10月9日 · How can I save the current window as an image file such as a png? I know I can get a gdkWindow from current windows. I can even get an image. From this image struct I can even query each pixel. But from what I understand what I really need is to get a pixbuf. int width; int height; this.GetSize(width, height); this.GdkWindow.GetImage(0,0,width ...
gtk - How to use GdkPixBuf? - Stack Overflow
2009年10月30日 · gdk_pixbuf_new_from_file()-- but see unwind's answer for a better way to do it using a GtkImage widget. You need to set the background pixmap field in the widget's style structure:
Gdk.Texture.save_to_png - docs.gtk.org
Store the given texture to the filename as a PNG file. This is a utility function intended for debugging and testing. If you want more control over formats, proper error handling or want to store to a GFile or other location, you might want to use gdk_texture_save_to_png_bytes() or look into the gdk-pixbuf library.
- 某些结果已被删除