Package org.gnome.gtk

Class Image

java.lang.Object
All Implemented Interfaces:
Proxy, Accessible, Buildable, ConstraintTarget

@Generated("io.github.jwharm.JavaGI") public class Image extends Widget implements Accessible, Buildable, ConstraintTarget
The GtkImage widget displays an image.

An example GtkImage

Various kinds of object can be displayed as an image; most typically, you would load a GdkTexture from a file, using the convenience function fromFile(java.lang.String), for instance:

GtkWidget *image = gtk_image_new_from_file ("myfile.png");
 

If the file isn’t loaded successfully, the image will contain a “broken image” icon similar to that used in many web browsers.

If you want to handle errors in loading the file yourself, for example by displaying an error message, then load the image with Texture.fromFile(org.gnome.gio.File), then create the GtkImage with fromPaintable(org.gnome.gdk.Paintable).

Sometimes an application will want to avoid depending on external data files, such as image files. See the documentation of GResource inside GIO, for details. In this case, Gtk.Image:resource, fromResource(java.lang.String), and setFromResource(java.lang.String) should be used.

GtkImage displays its image as an icon, with a size that is determined by the application. See Picture if you want to show an image at is actual size.

CSS nodes
GtkImage has a single CSS node with the name image. The style classes .normal-icons or .large-icons may appear, depending on the Gtk.Image:icon-size property.

Accessibility
GtkImage uses the GTK_ACCESSIBLE_ROLE_IMG role.