Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::gdk::image(3pm) [debian man page]

Gtk2::Gdk::Image(3pm)					User Contributed Perl Documentation				     Gtk2::Gdk::Image(3pm)

NAME
Gtk2::Gdk::Image - wrapper for GdkImage DESCRIPTION
A "Gtk2::Gdk::Image" is a 2-D array of pixel values in client-side memory. It can optionally use shared memory with the X server for fast copying to or from a window or pixmap. If you're thinking of using this then look at "Gtk2::Gdk::Pixbuf" first. GdkPixbuf has many more features, in particular file read and write (PNG, JPEG, etc). But a GdkImage lets you work directly in pixel values instead of expanding to RGB components. See Gtk2::Gdk::Drawable for "draw_image", "get_image" and "copy_to_image" methods to draw or fetch images to or from a window or pixmap. The various "get" methods are Gtk 2.22 style. For previous versions they're direct field access. HIERARCHY
Glib::Object +----Gtk2::Gdk::Image METHODS
image or undef = Gtk2::Gdk::Image->new ($type, $visual, $width, $height) o $type (Gtk2::Gdk::ImageType) o $visual (Gtk2::Gdk::Visual) o $width (integer) o $height (integer) integer = $image->get_bits_per_pixel byteorder = $image->get_byte_order integer = $image->get_bytes_per_line integer = $image->get_bytes_per_pixel colormap = $image->get_colormap $image->set_colormap ($colormap) o $colormap (Gtk2::Gdk::Colormap) integer = $image->get_depth integer = $image->get_height imagetype = $image->get_image_type unsigned = $image->get_pixel ($x, $y) o $x (integer) o $y (integer) string = $image->get_pixels() Return a copy of the raw pixel data memory from $image. This is "bytes_per_line * height" many bytes. $image->put_pixel ($x, $y, $pixel) o $x (integer) o $y (integer) o $pixel (unsigned) visual = $image->get_visual integer = $image->get_width ENUMS AND FLAGS
enum Gtk2::Gdk::ByteOrder o 'lsb-first' / 'GDK_LSB_FIRST' o 'msb-first' / 'GDK_MSB_FIRST' enum Gtk2::Gdk::ImageType o 'normal' / 'GDK_IMAGE_NORMAL' o 'shared' / 'GDK_IMAGE_SHARED' o 'fastest' / 'GDK_IMAGE_FASTEST' SEE ALSO
Gtk2, Glib::Object COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::Gdk::Image(3pm)

Check Out this Related Man Page

Gtk2::Gdk::Pixmap(3)					User Contributed Perl Documentation				      Gtk2::Gdk::Pixmap(3)

NAME
Gtk2::Gdk::Pixmap HIERARCHY
Glib::Object +----Gtk2::Gdk::Drawable +----Gtk2::Gdk::Pixmap METHODS
pixmap = Gtk2::Gdk::Pixmap->new ($drawable, $width, $height, $depth) o $drawable (Gtk2::Gdk::Drawable or undef) o $width (integer) o $height (integer) o $depth (integer) (pixmap, mask) = Gtk2::Gdk::Pixmap->colormap_create_from_xpm ($drawable, $colormap, $transparent_color, $filename) o $drawable (Gtk2::Gdk::Drawable or undef) may be undef if $colormap is given o $colormap (Gtk2::Gdk::Colormap or undef) GdkColormap to use for the new image; may be undef if $drawable is given. o $transparent_color (Gtk2::Gdk::Color or undef) color of pixels that are transparent in the input file. if undef, a default is used. o $filename (localized file name) ($pixmap, $mask) = Gtk2::Gdk::Pixmap->colormap_create_from_xpm_d ($drawable, $colormap, $transparent_color, @xpm_data) o $drawable (Gtk2::Gdk::Drawable or undef) may be undef if $colormap is given o $colormap (Gtk2::Gdk::Colormap or undef) GdkColormap to use for the new image; may be undef if $drawable is given. o $transparent_color (Gtk2::Gdk::Color or undef) color of pixels that are transparent in the input file. if undef, a default is used. o ... (list) of strings, xpm data Create a pixmap from the provided xpm data, using a specific colormap. See "create_from_xpm_d". pixmap = Gtk2::Gdk::Pixmap->create_from_data ($drawable, $data, $width, $height, $depth, $fg, $bg) o $drawable (Gtk2::Gdk::Drawable) o $data (string) o $width (integer) o $height (integer) o $depth (integer) o $fg (Gtk2::Gdk::Color) o $bg (Gtk2::Gdk::Color) (pixmap, mask) = Gtk2::Gdk::Pixmap->create_from_xpm ($drawable, $transparent_color, $filename) o $drawable (Gtk2::Gdk::Drawable) o $transparent_color (Gtk2::Gdk::Color or undef) o $filename (localized file name) ($pixmap, $mask) = Gtk2::Gdk::Pixmap->create_from_xpm_d ($drawable, $transparent_color, @xpm_data) o $drawable (Gtk2::Gdk::Drawable) used to determine the colormap and visual of the image. o $transparent_color (Gtk2::Gdk::Color or undef) color of pixels that are transparent in the input file. if undef, a default is used. o ... (list) of strings, xpm data Create a pixmap from the provided xpm data, usually included in the program as an inline image. See "new_from_xpm_data" in Gtk2::Gdk::Pixbuf for a description of the format of this data. pixmap = Gtk2::Gdk::Pixmap->foreign_new ($anid) o $anid (Gtk2::Gdk::NativeWindow) pixmap = Gtk2::Gdk::Pixmap->foreign_new_for_display ($display, $anid) o $display (Gtk2::Gdk::Display) o $anid (Gtk2::Gdk::NativeWindow) Since: gtk+ 2.2 pixmap = Gtk2::Gdk::Pixmap->foreign_new_for_screen ($screen, $anid, $width, $height, $depth) o $screen (Gtk2::Gdk::Screen) o $anid (Gtk2::Gdk::NativeWindow) o $width (integer) o $height (integer) o $depth (integer) Since: gtk+ 2.10 pixmap = Gtk2::Gdk::Pixmap->lookup ($anid) o $anid (Gtk2::Gdk::NativeWindow) pixmap = Gtk2::Gdk::Pixmap->lookup_for_display ($display, $anid) o $display (Gtk2::Gdk::Display) o $anid (Gtk2::Gdk::NativeWindow) Since: gtk+ 2.2 SEE ALSO
Gtk2, Glib::Object, Gtk2::Gdk::Drawable COPYRIGHT
Copyright (C) 2003-2008 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.12.1 2010-07-05 Gtk2::Gdk::Pixmap(3)
Man Page