Image

Image — Represent an Image.

Synopsis




struct      CriaImage;
struct      CriaImageClass;
struct      CriaImagePrivate;
struct      CriaImageClassPrivate;
const gchar* cria_image_get_uri             (CriaImage *self);
CriaImage*  cria_image_new                  (const gchar *uri);

Object Hierarchy


  GObject
   +----CriaImage

Properties


  "uri"                  gchararray           : Read / Write / Construct Only

Description

A CriaImage represents an Image in memory. It doesn't load the image actually.

Details

struct CriaImage

struct CriaImage;


struct CriaImageClass

struct CriaImageClass {

	GObjectClass		  base_class;
	CriaImageClassPrivate	* priv;
};


struct CriaImagePrivate

struct CriaImagePrivate;


struct CriaImageClassPrivate

struct CriaImageClassPrivate;


cria_image_get_uri ()

const gchar* cria_image_get_uri             (CriaImage *self);

self :
Returns :

cria_image_new ()

CriaImage*  cria_image_new                  (const gchar *uri);

Create a new CriaImage poiting to the image file specified by uri.

uri : a text uri
Returns :a new CriaImage

Properties

"uri" (gchararray : Read / Write / Construct Only)

The URI of the image file.