Tizen Native API  7.0
Image Store and Load using a Cipher

Most of the Image Store and Load have alternative versions that accounts for ciphers to protect their content.

See also:
Cipher, Identity and Protection Mechanisms

Functions

int eet_data_image_header_read_cipher (Eet_File *ef, const char *name, const char *cipher_key, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, Eet_Image_Encoding *lossy)
 Reads just the header data for an image and dont decode the pixels using a cipher.
void * eet_data_image_read_cipher (Eet_File *ef, const char *name, const char *cipher_key, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, Eet_Image_Encoding *lossy)
 Reads image data from the named key in the eet file using a cipher.
int eet_data_image_read_to_surface_cipher (Eet_File *ef, const char *name, const char *cipher_key, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, int *alpha, int *compress, int *quality, Eet_Image_Encoding *lossy)
 Reads image data from the named key in the eet file using a cipher.
int eet_data_image_read_to_cspace_surface_cipher (Eet_File *ef, const char *name, const char *cipher_key, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, Eet_Colorspace cspace, int *alpha, int *comp, int *quality, Eet_Image_Encoding *lossy)
 Reads image data from the named key in the eet file using a cipher.
int eet_data_image_decode_to_cspace_surface_cipher (const void *data, const char *cipher_key, int size, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, Eet_Colorspace cspace, int *alpha, int *comp, int *quality, Eet_Image_Encoding *lossy)
 Reads image data from the named key in the eet file using a cipher.
int eet_data_image_write_cipher (Eet_File *ef, const char *name, const char *cipher_key, const void *data, unsigned int w, unsigned int h, int alpha, int compress, int quality, Eet_Image_Encoding lossy)
 Writes image data to the named key in an eet file using a cipher.
int eet_data_image_header_decode_cipher (const void *data, const char *cipher_key, int size, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, Eet_Image_Encoding *lossy)
 Decodes Image data header only to get information using a cipher.
void * eet_data_image_decode_cipher (const void *data, const char *cipher_key, int size, unsigned int *w, unsigned int *h, int *alpha, int *compress, int *quality, Eet_Image_Encoding *lossy)
 Decodes Image data into pixel data using a cipher.
int eet_data_image_decode_to_surface_cipher (const void *data, const char *cipher_key, int size, unsigned int src_x, unsigned int src_y, unsigned int *d, unsigned int w, unsigned int h, unsigned int row_stride, int *alpha, int *compress, int *quality, Eet_Image_Encoding *lossy)
 Decodes Image data into pixel data using a cipher.
void * eet_data_image_encode_cipher (const void *data, const char *cipher_key, unsigned int w, unsigned int h, int alpha, int compress, int quality, Eet_Image_Encoding lossy, int *size_ret)
 Encodes image data for storage or transmission using a cipher.

Function Documentation

void* eet_data_image_decode_cipher ( const void *  data,
const char *  cipher_key,
int  size,
unsigned int *  w,
unsigned int *  h,
int *  alpha,
int *  compress,
int *  quality,
Eet_Image_Encoding lossy 
)

Decodes Image data into pixel data using a cipher.

Parameters:
dataThe encoded pixel data.
cipher_keyThe key to use as cipher.
sizeThe size, in bytes, of the encoded pixel data.
wA pointer to the unsigned int to hold the width in pixels.
hA pointer to the unsigned int to hold the height in pixels.
alphaA pointer to the int to hold the alpha flag.
compressA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
The image pixel data decoded

This function takes encoded pixel data and decodes it into raw RGBA pixels on success.

The other parameters of the image (width, height etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns a pointer to the image data decoded. The calling application is responsible for calling free() on the image data when it is done with it. On failure NULL is returned and the parameter values may not contain any sensible data.

See also:
eet_data_image_decode()
Since (EFL) :
1.0.0
Since :
3.0
int eet_data_image_decode_to_cspace_surface_cipher ( const void *  data,
const char *  cipher_key,
int  size,
unsigned int  src_x,
unsigned int  src_y,
unsigned int *  d,
unsigned int  w,
unsigned int  h,
unsigned int  row_stride,
Eet_Colorspace  cspace,
int *  alpha,
int *  comp,
int *  quality,
Eet_Image_Encoding lossy 
)

Reads image data from the named key in the eet file using a cipher.

Parameters:
dataThe encoded pixel data.
cipher_keyThe key to use as cipher.
sizeThe size, in bytes, of the encoded pixel data.
src_xThe starting x coordinate from where to dump the stream.
src_yThe starting y coordinate from where to dump the stream.
dA pointer to the pixel surface.
wThe expected width in pixels of the pixel surface to decode.
hThe expected height in pixels of the pixel surface to decode.
row_strideThe length of a pixels line in the destination surface.
cspaceThe color space of the pixel surface
alphaA pointer to the int to hold the alpha flag.
compA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
1 on success, 0 otherwise.

This function reads an image from an eet file stored under the named key in the eet file and store the decompressed pixels in the specified color space inside the given surface.

The other parameters of the image (width, height etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns 1, and 0 on failure. On failure the parameter values may not contain any sensible data.

See also:
eet_data_image_read_to_surface()
eet_data_image_read_to_surface_cipher()
Since (EFL) :
1.10.0
Since :
3.0
int eet_data_image_decode_to_surface_cipher ( const void *  data,
const char *  cipher_key,
int  size,
unsigned int  src_x,
unsigned int  src_y,
unsigned int *  d,
unsigned int  w,
unsigned int  h,
unsigned int  row_stride,
int *  alpha,
int *  compress,
int *  quality,
Eet_Image_Encoding lossy 
)

Decodes Image data into pixel data using a cipher.

Parameters:
dataThe encoded pixel data.
cipher_keyThe key to use as cipher.
sizeThe size, in bytes, of the encoded pixel data.
src_xThe starting x coordinate from where to dump the stream.
src_yThe starting y coordinate from where to dump the stream.
dA pointer to the pixel surface.
wThe expected width in pixels of the pixel surface to decode.
hThe expected height in pixels of the pixel surface to decode.
row_strideThe length of a pixels line in the destination surface.
alphaA pointer to the int to hold the alpha flag.
compressA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
1 on success, 0 otherwise.

This function takes encoded pixel data and decodes it into raw RGBA pixels on success.

The other parameters of the image (alpha, compress etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns 1, and 0 on failure. On failure the parameter values may not contain any sensible data.

See also:
eet_data_image_decode_to_surface()
Since (EFL) :
1.0.2
Since :
3.0
void* eet_data_image_encode_cipher ( const void *  data,
const char *  cipher_key,
unsigned int  w,
unsigned int  h,
int  alpha,
int  compress,
int  quality,
Eet_Image_Encoding  lossy,
int *  size_ret 
)

Encodes image data for storage or transmission using a cipher.

Parameters:
dataA pointer to the image pixel data.
cipher_keyThe key to use as cipher.
size_retA pointer to an int to hold the size of the returned data.
wThe width of the image in pixels.
hThe height of the image in pixels.
alphaThe alpha channel flag.
compressThe compression amount.
qualityThe quality encoding amount.
lossyThe lossiness flag.
Returns:
The encoded image data.

This function stakes image pixel data and encodes it with compression and possible loss of quality (as a trade off for size) for storage or transmission to another system.

The data expected is the same format as returned by eet_data_image_read. If this is not the case weird things may happen. Width and height must be between 1 and 8000 pixels. The alpha flags can be 0 or 1 (0 meaning the alpha values are not useful and 1 meaning they are). Compress can be from 0 to 9 (0 meaning no compression, 9 meaning full compression). This is only used if the image is not lossily encoded. Quality is used on lossy compression and should be a value from 0 to 100. The lossy flag can be 0 or 1. 0 means encode losslessly and 1 means to encode with image quality loss (but then have a much smaller encoding).

On success this function returns a pointer to the encoded data that you can free with free() when no longer needed.

See also:
eet_data_image_encode()
Since (EFL) :
1.0.0
Since :
3.0
int eet_data_image_header_decode_cipher ( const void *  data,
const char *  cipher_key,
int  size,
unsigned int *  w,
unsigned int *  h,
int *  alpha,
int *  compress,
int *  quality,
Eet_Image_Encoding lossy 
)

Decodes Image data header only to get information using a cipher.

Parameters:
dataThe encoded pixel data.
cipher_keyThe key to use as cipher.
sizeThe size, in bytes, of the encoded pixel data.
wA pointer to the unsigned int to hold the width in pixels.
hA pointer to the unsigned int to hold the height in pixels.
alphaA pointer to the int to hold the alpha flag.
compressA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
1 on success, 0 on failure.

This function takes encoded pixel data and decodes it into raw RGBA pixels on success.

The other parameters of the image (width, height etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns 1 indicating the header was read and decoded properly, or 0 on failure.

See also:
eet_data_image_header_decode()
Since (EFL) :
1.0.0
Since :
3.0
int eet_data_image_header_read_cipher ( Eet_File ef,
const char *  name,
const char *  cipher_key,
unsigned int *  w,
unsigned int *  h,
int *  alpha,
int *  compress,
int *  quality,
Eet_Image_Encoding lossy 
)

Reads just the header data for an image and dont decode the pixels using a cipher.

Parameters:
efA valid eet file handle opened for reading.
nameName of the entry. eg: "/base/file_i_want".
cipher_keyThe key to use as cipher.
wA pointer to the unsigned int to hold the width in pixels.
hA pointer to the unsigned int to hold the height in pixels.
alphaA pointer to the int to hold the alpha flag.
compressA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
1 on successful decode, 0 otherwise

This function reads an image from an eet file stored under the named key in the eet file and return a pointer to the decompressed pixel data.

The other parameters of the image (width, height etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns 1 indicating the header was read and decoded properly, or 0 on failure.

See also:
eet_data_image_header_read()
Since (EFL) :
1.0.0
Since :
3.0
void* eet_data_image_read_cipher ( Eet_File ef,
const char *  name,
const char *  cipher_key,
unsigned int *  w,
unsigned int *  h,
int *  alpha,
int *  compress,
int *  quality,
Eet_Image_Encoding lossy 
)

Reads image data from the named key in the eet file using a cipher.

Parameters:
efA valid eet file handle opened for reading.
nameName of the entry. eg: "/base/file_i_want".
cipher_keyThe key to use as cipher.
wA pointer to the unsigned int to hold the width in pixels.
hA pointer to the unsigned int to hold the height in pixels.
alphaA pointer to the int to hold the alpha flag.
compressA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
The image pixel data decoded

This function reads an image from an eet file stored under the named key in the eet file and return a pointer to the decompressed pixel data.

The other parameters of the image (width, height etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns a pointer to the image data decoded. The calling application is responsible for calling free() on the image data when it is done with it. On failure NULL is returned and the parameter values may not contain any sensible data.

See also:
eet_data_image_read()
Since (EFL) :
1.0.0
Since :
3.0
int eet_data_image_read_to_cspace_surface_cipher ( Eet_File ef,
const char *  name,
const char *  cipher_key,
unsigned int  src_x,
unsigned int  src_y,
unsigned int *  d,
unsigned int  w,
unsigned int  h,
unsigned int  row_stride,
Eet_Colorspace  cspace,
int *  alpha,
int *  comp,
int *  quality,
Eet_Image_Encoding lossy 
)

Reads image data from the named key in the eet file using a cipher.

Parameters:
efA valid eet file handle opened for reading.
nameName of the entry. eg: "/base/file_i_want".
cipher_keyThe key to use as cipher.
src_xThe starting x coordinate from where to dump the stream.
src_yThe starting y coordinate from where to dump the stream.
dA pointer to the pixel surface.
wThe expected width in pixels of the pixel surface to decode.
hThe expected height in pixels of the pixel surface to decode.
row_strideThe length of a pixels line in the destination surface.
cspaceThe color space of the pixels surface.
alphaA pointer to the int to hold the alpha flag.
compA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
1 on success, 0 otherwise.

This function reads an image from an eet file stored under the named key in the eet file and store the decompressed pixel data in the provided surface colorspace.

The other parameters of the image (width, height etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns 1, and 0 on failure. On failure the parameter values may not contain any sensible data.

See also:
eet_data_image_read_to_surface()
eet_data_image_decode_to_cspace_surface_cipher()
eet_data_image_read_to_surface_cipher()
Since (EFL) :
1.10.0
Since :
3.0
int eet_data_image_read_to_surface_cipher ( Eet_File ef,
const char *  name,
const char *  cipher_key,
unsigned int  src_x,
unsigned int  src_y,
unsigned int *  d,
unsigned int  w,
unsigned int  h,
unsigned int  row_stride,
int *  alpha,
int *  compress,
int *  quality,
Eet_Image_Encoding lossy 
)

Reads image data from the named key in the eet file using a cipher.

Parameters:
efA valid eet file handle opened for reading.
nameName of the entry. eg: "/base/file_i_want".
cipher_keyThe key to use as cipher.
src_xThe starting x coordinate from where to dump the stream.
src_yThe starting y coordinate from where to dump the stream.
dA pointer to the pixel surface.
wThe expected width in pixels of the pixel surface to decode.
hThe expected height in pixels of the pixel surface to decode.
row_strideThe length of a pixels line in the destination surface.
alphaA pointer to the int to hold the alpha flag.
compressA pointer to the int to hold the compression amount.
qualityA pointer to the int to hold the quality amount.
lossyA pointer to the int to hold the lossiness flag.
Returns:
1 on success, 0 otherwise.

This function reads an image from an eet file stored under the named key in the eet file and store the decompressed pixel data in the provided surface with an EET_COLORSPACE_ARGB8888 colorspace.

The other parameters of the image (width, height etc.) are placed into the values pointed to (they must be supplied). The pixel data is a linear array of pixels starting from the top-left of the image scanning row by row from left to right. Each pixel is a 32bit value, with the high byte being the alpha channel, the next being red, then green, and the low byte being blue. The width and height are measured in pixels and will be greater than 0 when returned. The alpha flag is either 0 or 1. 0 denotes that the alpha channel is not used. 1 denotes that it is significant. Compress is filled with the compression value/amount the image was stored with. The quality value is filled with the quality encoding of the image file (0 - 100). The lossy flags is either 0 or 1 as to if the image was encoded lossily or not.

On success the function returns 1, and 0 on failure. On failure the parameter values may not contain any sensible data.

See also:
eet_data_image_read_to_surface()
eet_data_image_decode_to_cspace_surface_cipher()
Since (EFL) :
1.0.2
Since :
3.0
int eet_data_image_write_cipher ( Eet_File ef,
const char *  name,
const char *  cipher_key,
const void *  data,
unsigned int  w,
unsigned int  h,
int  alpha,
int  compress,
int  quality,
Eet_Image_Encoding  lossy 
)

Writes image data to the named key in an eet file using a cipher.

Parameters:
efA valid eet file handle opened for writing.
nameName of the entry. eg: "/base/file_i_want".
cipher_keyThe key to use as cipher.
dataA pointer to the image pixel data.
wThe width of the image in pixels.
hThe height of the image in pixels.
alphaThe alpha channel flag.
compressThe compression amount.
qualityThe quality encoding amount.
lossyThe lossiness flag.
Returns:
Success if the data was encoded and written or not.

This function takes image pixel data and encodes it in an eet file stored under the supplied name key, and returns how many bytes were actually written to encode the image data.

The data expected is the same format as returned by eet_data_image_read. If this is not the case weird things may happen. Width and height must be between 1 and 8000 pixels. The alpha flags can be 0 or 1 (0 meaning the alpha values are not useful and 1 meaning they are). Compress can be from 0 to 9 (0 meaning no compression, 9 meaning full compression). This is only used if the image is not lossily encoded. Quality is used on lossy compression and should be a value from 0 to 100. The lossy flag can be 0 or 1. 0 means encode losslessly and 1 means to encode with image quality loss (but then have a much smaller encoding).

On success this function returns the number of bytes that were required to encode the image data, or on failure it returns 0.

See also:
eet_data_image_write()
Since (EFL) :
1.0.0
Since :
3.0