Struct
VipsArea
Constructors
vips_area_new
A VipsArea wraps a chunk of memory. It adds reference counting and a free function. It also keeps a count and a %GType, so the area can be an array.
vips_area_new_array
An area which holds an array of elements of some %GType. To set values for the elements, get the pointer and write.
vips_area_new_array_object
An area which holds an array of GObject
s. See vips_area_new_array()
. When
the area is freed, each GObject
will be unreffed.
Instance methods
vips_area_get_data
Return the data pointer plus optionally the length in bytes of an area,
the number of elements, the %GType of each element and the sizeof()
each element.