Constructor

AppStreamComposeImagenew_from_data

Declaration [src]

AscImage*
asc_image_new_from_data (
  void* data,
  gssize len,
  guint dest_size,
  gboolean compressed,
  AscImageLoadFlags flags,
  GError** error
)

Description [src]

Creates a new AscImage from data in memory.

Parameters

data void*
 

Data to load.

 The argument can be NULL.
 The data is owned by the caller of the function.
len gssize
 

Length of the data to load.

dest_size guint
 

The size of the constructed pixbuf, or 0 for the native size.

compressed gboolean
 

TRUE if passed data is gzip-compressed.

flags AscImageLoadFlags
 

A AscImageLoadFlags, e.g. ASC_IMAGE_LOAD_FLAG_NONE.

error GError **
  The return location for a GError*, or NULL.

Return value

Returns: AscImage
  No description available.
 The caller of the function takes ownership of the data, and is responsible for freeing it.