|
virtual | ~Pixbuf () |
|
GdkPixbuf* | gobj () |
| Provides access to the underlying C GObject. More...
|
|
const GdkPixbuf* | gobj () const |
| Provides access to the underlying C GObject. More...
|
|
GdkPixbuf* | gobj_copy () |
| Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
|
|
Glib::RefPtr< Pixbuf > | copy () const |
|
Colorspace | get_colorspace () const |
|
int | get_n_channels () const |
|
bool | get_has_alpha () const |
|
int | get_bits_per_sample () const |
|
guint8* | get_pixels () const |
|
int | get_width () const |
|
int | get_height () const |
|
int | get_rowstride () const |
|
void | fill (guint32 pixel) |
|
void | save (const std::string& filename, const Glib::ustring& type) const |
| Saves pixbuf to a file in format type. More...
|
|
void | save (const std::string& filename, const Glib::ustring& type) |
| Same as the const version. More...
|
|
void | save (const std::string& filename, const Glib::ustring& type, const std::vector< Glib::ustring >& option_keys, const std::vector< Glib::ustring >& option_values) const |
| Saves pixbuf to a file in format type. More...
|
|
void | save (const std::string& filename, const Glib::ustring& type, const std::vector< Glib::ustring >& option_keys, const std::vector< Glib::ustring >& option_values) |
| Same as the const version. More...
|
|
void | save_to_buffer (gchar*& buffer, gsize& buffer_size, const Glib::ustring& type="png") const |
| Saves the pixbuf to a new buffer in format type. More...
|
|
void | save_to_buffer (gchar*& buffer, gsize& buffer_size, const Glib::ustring& type="png") |
| Same as the const version. More...
|
|
void | save_to_buffer (gchar*& buffer, gsize& buffer_size, const Glib::ustring& type, const std::vector< Glib::ustring >& option_keys, const std::vector< Glib::ustring >& option_values) const |
| Saves the pixbuf to a new buffer in format type. More...
|
|
void | save_to_buffer (gchar*& buffer, gsize& buffer_size, const Glib::ustring& type, const std::vector< Glib::ustring >& option_keys, const std::vector< Glib::ustring >& option_values) |
| Same as the const version. More...
|
|
Glib::RefPtr< Gdk::Pixbuf > | add_alpha (bool substitute_color, guint8 r, guint8 g, guint8 b) const |
|
void | copy_area (int src_x, int src_y, int width, int height, const Glib::RefPtr< Gdk::Pixbuf >& dest_pixbuf, int dest_x, int dest_y) const |
|
void | saturate_and_pixelate (const Glib::RefPtr< Gdk::Pixbuf >& dest, float saturation, bool pixelate) const |
|
void | scale (const Glib::RefPtr< Gdk::Pixbuf >& dest, int dest_x, int dest_y, int dest_width, int dest_height, double offset_x, double offset_y, double scale_x, double scale_y, InterpType interp_type) const |
|
void | composite (const Glib::RefPtr< Gdk::Pixbuf >& dest, int dest_x, int dest_y, int dest_width, int dest_height, double offset_x, double offset_y, double scale_x, double scale_y, InterpType interp_type, int overall_alpha) const |
|
void | composite_color (const Glib::RefPtr< Gdk::Pixbuf >& dest, int dest_x, int dest_y, int dest_width, int dest_height, double offset_x, double offset_y, double scale_x, double scale_y, InterpType interp_type, int overall_alpha, int check_x, int check_y, int check_size, guint32 color1, guint32 color2) const |
|
Glib::RefPtr< Gdk::Pixbuf > | scale_simple (int dest_width, int dest_height, InterpType interp_type) const |
|
Glib::RefPtr< Gdk::Pixbuf > | composite_color_simple (int dest_width, int dest_height, InterpType interp_type, int overall_alpha, int check_size, guint32 color1, guint32 color2) const |
|
Glib::RefPtr< Gdk::Pixbuf > | rotate_simple (PixbufRotation angle) const |
|
Glib::RefPtr< Gdk::Pixbuf > | flip (bool horizontal=true) const |
|
Glib::ustring | get_option (const Glib::ustring& key) const |
|
Glib::RefPtr< Pixbuf > | apply_embedded_orientation () |
|
Glib::PropertyProxy_ReadOnly
< Colorspace > | property_colorspace () const |
| The colorspace in which the samples are interpreted. More...
|
|
Glib::PropertyProxy_ReadOnly< int > | property_n_channels () const |
| The number of samples per pixel. More...
|
|
Glib::PropertyProxy_ReadOnly
< bool > | property_has_alpha () const |
| Whether the pixbuf has an alpha channel. More...
|
|
Glib::PropertyProxy_ReadOnly< int > | property_bits_per_sample () const |
| The number of bits per sample. More...
|
|
Glib::PropertyProxy_ReadOnly< int > | property_width () const |
| The number of columns of the pixbuf. More...
|
|
Glib::PropertyProxy_ReadOnly< int > | property_height () const |
| The number of rows of the pixbuf. More...
|
|
Glib::PropertyProxy_ReadOnly< int > | property_rowstride () const |
| The number of bytes between the start of a row and the start of the next row. More...
|
|
Glib::PropertyProxy_ReadOnly
< void* > | property_pixels () const |
| A pointer to the pixel data of the pixbuf. More...
|
|
|
static GType | get_type () |
| Get the GType for this class, for use with the underlying GObject type system. More...
|
|
static Glib::RefPtr< Pixbuf > | create (const Glib::RefPtr< Window >& src, int src_x, int src_y, int width, int height) |
| Transfers image data from a #GdkWindow and converts it to an RGB(A) representation inside a Gdk::Pixbuf. More...
|
|
static Glib::RefPtr< Pixbuf > | create (const Cairo::RefPtr< Cairo::Surface >& src, int src_x, int src_y, int width, int height) |
|
static Glib::RefPtr< Pixbuf > | create (Colorspace colorspace, bool has_alpha, int bits_per_sample, int width, int height) |
|
static Glib::RefPtr< Pixbuf > | create_subpixbuf (const Glib::RefPtr< Pixbuf >& src_pixbuf, int src_x, int src_y, int width, int height) |
|
static Glib::RefPtr< Pixbuf > | create_from_file (const std::string& filename) |
| Creates a new pixbuf by loading an image from a file. More...
|
|
static Glib::RefPtr< Pixbuf > | create_from_file (const std::string& filename, int width, int height, bool preserve_aspect_ratio=true) |
| Creates a new pixbuf by loading an image from a file. More...
|
|
static Glib::RefPtr< Pixbuf > | create_from_data (const guint8* data, Colorspace colorspace, bool has_alpha, int bits_per_sample, int width, int height, int rowstride) |
| Creates a new Gdk::Pixbuf out of in-memory image data. More...
|
|
static Glib::RefPtr< Pixbuf > | create_from_data (const guint8* data, Colorspace colorspace, bool has_alpha, int bits_per_sample, int width, int height, int rowstride, const SlotDestroyData& destroy_slot) |
| Creates a new Gdk::Pixbuf out of in-memory image data. More...
|
|
static Glib::RefPtr< Pixbuf > | create_from_xpm_data (const char* const* data) |
|
static Glib::RefPtr< Pixbuf > | create_from_inline (int data_length, const guint8* data, bool copy_pixels=false) |
| Create a Gdk::Pixbuf from a flat representation that is suitable for storing as inline data in a program. More...
|
|
static Glib::RefPtr< Pixbuf > | create_from_stream (const Glib::RefPtr< Gio::InputStream >& stream, const Glib::RefPtr< Gio::Cancellable >& cancellable) |
|
static Glib::RefPtr< Pixbuf > | create_from_stream (const Glib::RefPtr< Gio::InputStream >& stream) |
|
static Glib::RefPtr< Pixbuf > | create_from_stream_at_scale (const Glib::RefPtr< Gio::InputStream >& stream, int width, int height, bool preserve_aspect_ratio, const Glib::RefPtr< Gio::Cancellable >& cancellable) |
|
static Glib::RefPtr< Pixbuf > | create_from_stream_at_scale (const Glib::RefPtr< Gio::InputStream >& stream, int width, int height, bool preserve_aspect_ratio) |
|
static std::vector< PixbufFormat > | get_formats () |
| Obtains the available information about the image formats supported by GdkPixbuf. More...
|
|
Gdk::Pixbuf::Pixbuf |
( |
const Glib::RefPtr< Window >& |
src, |
|
|
int |
src_x, |
|
|
int |
src_y, |
|
|
int |
width, |
|
|
int |
height |
|
) |
| |
|
protected |
Transfers image data from a #GdkWindow and converts it to an RGB(A) representation inside a Gdk::Pixbuf.
In other words, copies image data from a server-side drawable to a client-side RGB(A) buffer. This allows you to efficiently read individual pixels on the client side.
This function will create an RGB pixbuf with 8 bits per channel with the same size specified by the width and height arguments. The pixbuf will contain an alpha channel if the window contains one.
If the window is off the screen, then there is no image data in the obscured/offscreen regions to be placed in the pixbuf. The contents of portions of the pixbuf corresponding to the offscreen region are undefined.
If the window you're obtaining data from is partially obscured by other windows, then the contents of the pixbuf areas corresponding to the obscured regions are undefined.
If the window is not mapped (typically because it's iconified/minimized or not on the current workspace), then an invalid object will be returned.
If memory can't be allocated for the return value, an invalid object will be returned instead.
- Parameters
-
src | Source window. |
src_x | Source X coordinate within the window. |
src_y | Source Y coordinate within the window. |
width | Width in pixels of region to get. |
height | Height in pixels of region to get. |
- Since gtkmm 2.12:
Transfers image data from a #GdkWindow and converts it to an RGB(A) representation inside a Gdk::Pixbuf.
In other words, copies image data from a server-side drawable to a client-side RGB(A) buffer. This allows you to efficiently read individual pixels on the client side.
This function will create an RGB pixbuf with 8 bits per channel with the same size specified by the width and height arguments. The pixbuf will contain an alpha channel if the window contains one.
If the window is off the screen, then there is no image data in the obscured/offscreen regions to be placed in the pixbuf. The contents of portions of the pixbuf corresponding to the offscreen region are undefined.
If the window you're obtaining data from is partially obscured by other windows, then the contents of the pixbuf areas corresponding to the obscured regions are undefined.
If the window is not mapped (typically because it's iconified/minimized or not on the current workspace), then an invalid object will be returned.
If memory can't be allocated for the return value, an invalid object will be returned instead.
- Parameters
-
src | Source window. |
src_x | Source X coordinate within the window. |
src_y | Source Y coordinate within the window. |
width | Width in pixels of region to get. |
height | Height in pixels of region to get. |
- Since gtkmm 2.12:
static Glib::RefPtr<Pixbuf> Gdk::Pixbuf::create_from_inline |
( |
int |
data_length, |
|
|
const guint8 * |
data, |
|
|
bool |
copy_pixels = false |
|
) |
| |
|
static |
Create a Gdk::Pixbuf from a flat representation that is suitable for storing as inline data in a program.
This is useful if you want to ship a program with images, but don't want to depend on any external files.
GTK+ ships with a program called gdk-pixbuf-csource
which allows for conversion of GdkPixbufs into such a inline representation. In almost all cases, you should pass the –raw
flag to gdk-pixbuf-csource
. A sample invocation would be:
gdk-pixbuf-csource –raw –name=myimage_inline myimage.png
For the typical case where the inline pixbuf is read-only static data, you don't need to copy the pixel data unless you intend to write to it, so you can pass false
for copy_pixels. (If you pass –rle
to gdk-pixbuf-csource
, a copy will be made even if copy_pixels is false
, so using this option is generally a bad idea.)
If you create a pixbuf from const inline data compiled into your program, it's probably safe to ignore errors, since things will always succeed. For non-const inline data, you could get out of memory. For untrusted inline data located at runtime, you could have corrupt inline data in addition.
- Parameters
-
data_length | Length in bytes of the data argument. |
data | Byte data containing a serialized GdkPixdata structure. |
copy_pixels | Whether to copy the pixel data, or use direct pointers to data for the resulting pixbuf. |
- Exceptions
-
Saves pixbuf to a file in format type.
By default, "jpeg", "png", "ico" and "bmp" are possible file formats to save in, but more formats may be installed. TThe list of all writable formats can be determined by using get_formats() with Gdk::PixbufFormat::is_writable().
The option_keys and option_values, if not empty, should contain pairs of strings that modify the save parameters. For example, "quality", "100".
Currently only a few parameters exist. JPEG images can be saved with a "quality" parameter; its value should be in the range [0,100]. Text chunks can be attached to PNG images by specifying parameters of the form "tEXt::key", where key is an ASCII string of length 1-79. The values are UTF-8 encoded strings. ICO images can be saved in depth 16, 24, or 32, by using the "depth" parameter. When the ICO saver is given "x_hot" and "y_hot" parameters, it produces a CUR instead of an ICO.
- Since gtkmm 3.6:
- Parameters
-
filename | The path of the file to be created. |
type | The file type. |
option_keys | |
option_values | |
- Exceptions
-