Data Structures | |
struct | _Elm_Image_Progress |
Structure associated with smart callback 'download,progress'. More... | |
struct | _Elm_Image_Error |
Structure associated with smart callback 'download,progress'. More... | |
Typedefs | |
typedef struct _Elm_Image_Progress | Elm_Image_Progress |
Structure associated with smart callback 'download,progress'. More... | |
typedef struct _Elm_Image_Error | Elm_Image_Error |
Structure associated with smart callback 'download,progress'. More... | |
typedef enum _Elm_Image_Orient_Type | Elm_Image_Orient |
Using Evas_Image_Orient enums. More... | |
Enumerations | |
enum | _Elm_Image_Orient_Type { ELM_IMAGE_ORIENT_NONE = 0 , ELM_IMAGE_ORIENT_0 = 0 , ELM_IMAGE_ROTATE_90 = 1 , ELM_IMAGE_ORIENT_90 = 1 , ELM_IMAGE_ROTATE_180 = 2 , ELM_IMAGE_ORIENT_180 = 2 , ELM_IMAGE_ROTATE_270 = 3 , ELM_IMAGE_ORIENT_270 = 3 , ELM_IMAGE_FLIP_HORIZONTAL = 4 , ELM_IMAGE_FLIP_VERTICAL = 5 , ELM_IMAGE_FLIP_TRANSPOSE = 6 , ELM_IMAGE_FLIP_TRANSVERSE = 7 } |
Using Evas_Image_Orient enums. More... | |
Functions | |
Evas_Object * | elm_image_add (Evas_Object *parent) |
Add a new image to the parent. More... | |
Eina_Bool | elm_image_file_set (Evas_Object *obj, const char *file, const char *group) |
Set the file that will be used as the image's source. More... | |
void | elm_image_file_get (const Eo *obj, const char **file, const char **group) |
Get the file that will be used as image. More... | |
void | elm_image_prescale_set (Evas_Object *obj, int size) |
Set the prescale size for the image. More... | |
int | elm_image_prescale_get (const Evas_Object *obj) |
Get the prescale size for the image. More... | |
Eina_Bool | elm_image_mmap_set (Evas_Object *obj, const Eina_File *file, const char *group) |
Set the file that will be used as the image's source. More... | |
void | elm_image_smooth_set (Evas_Object *obj, Eina_Bool smooth) |
Control the smooth effect for an image. More... | |
Eina_Bool | elm_image_smooth_get (const Evas_Object *obj) |
Get the smooth effect for an image. More... | |
void | elm_image_animated_play_set (Evas_Object *obj, Eina_Bool play) |
Start or stop an image object's animation. More... | |
Eina_Bool | elm_image_animated_play_get (const Evas_Object *obj) |
Get whether an image object is under animation or not. More... | |
void | elm_image_animated_set (Evas_Object *obj, Eina_Bool anim) |
Set whether an image object (which supports animation) is to animate itself or not. More... | |
Eina_Bool | elm_image_animated_get (const Evas_Object *obj) |
Get whether an image object has animation enabled or not. More... | |
Eina_Bool | elm_image_animated_available_get (const Evas_Object *obj) |
Get whether an image object supports animation or not. More... | |
void | elm_image_editable_set (Evas_Object *obj, Eina_Bool set) |
Contrtol if the image is 'editable'. More... | |
Eina_Bool | elm_image_editable_get (const Evas_Object *obj) |
Contrtol if the image is 'editable'. More... | |
Eina_Bool | elm_image_memfile_set (Evas_Object *obj, const void *img, size_t size, const char *format, const char *key) |
Set a location in memory to be used as an image object's source bitmap. More... | |
void | elm_image_fill_outside_set (Evas_Object *obj, Eina_Bool fill_outside) |
Control if the image fills the entire object area, when keeping the aspect ratio. More... | |
Eina_Bool | elm_image_fill_outside_get (const Evas_Object *obj) |
Control if the image fills the entire object area, when keeping the aspect ratio. More... | |
void | elm_image_preload_disabled_set (Evas_Object *obj, Eina_Bool disabled) |
Enable or disable preloading of the image. More... | |
void | elm_image_orient_set (Evas_Object *obj, Elm_Image_Orient orient) |
Contrtol the image orientation. More... | |
Elm_Image_Orient | elm_image_orient_get (const Evas_Object *obj) |
Contrtol the image orientation. More... | |
Evas_Object * | elm_image_object_get (const Evas_Object *obj) |
Get the inlined image object of the image widget. More... | |
void | elm_image_object_size_get (const Evas_Object *obj, int *w, int *h) |
Get the current size of the image. More... | |
void | elm_image_resizable_set (Evas_Object *obj, Eina_Bool up, Eina_Bool down) |
Control if the object is (up/down) resizable. More... | |
void | elm_image_resizable_get (const Evas_Object *obj, Eina_Bool *up, Eina_Bool *down) |
Control if the object is (up/down) resizable. More... | |
void | elm_image_no_scale_set (Evas_Object *obj, Eina_Bool no_scale) |
Control scaling behaviour of this object. More... | |
Eina_Bool | elm_image_no_scale_get (const Evas_Object *obj) |
Control scaling behaviour of this object. More... | |
void | elm_image_aspect_fixed_set (Evas_Object *obj, Eina_Bool fixed) |
Control whether the internal image's aspect ratio is fixed to the original image's aspect ratio. More... | |
Eina_Bool | elm_image_aspect_fixed_get (const Evas_Object *obj) |
Get whether the internal image's aspect ratio is fixed to the original image's. More... | |
void | elm_image_async_open_set (Evas_Object *obj, Eina_Bool async) |
Enable asynchronous file I/O for elm_image_file_set. More... | |
An Elementary image object is a direct realization of The Elementary Image Class, and it allows one to load and display an image file on it, be it from a disk file or from a memory region. Exceptionally, one may also load an Edje group as the contents of the image. In this case, though, most of the functions of the image API will act as a no-op.
One can tune various properties of the image, like:
An image object may also be made valid source and destination for drag and drop actions, through the elm_image_editable_set() call.
If the image source size is bigger than maximum texture size of the GPU (or also of the software rendering code too), evas can't render it because of such a limitation. If evas just magically always downscales on load if it's too big, then the user has a new bug: "the image is blurry". Potentially any image can cause issue. What if the image is too big to allocate memory for it? A 30000x30000 image will need just a bit under 4GB of RAM to store it. Texture size limitations are something every game developer has to deal with game engines, OpenGL, D3D etc. You can get the maximum image size evas can possibly handle by the calling evas_image_max_size_get() function. If the image size is bigger than this, you can try using load options to pre-scale down on load to lower quality. So use the elm_image_prescale_set() function to scale the image down. Another option is to use the Photocam widget. Photocam solves this issue by loading the prices as needed asynchronously in tiles and automatically using pre-scaling as well So use Photocam if you expect to load very large images.
Signals that you can add callbacks for are:
"drop"
- This is called when a user has dropped an image typed object onto the object in question – the event info argument is the path to that image file "clicked"
- This is called when a user has clicked the image "download,start"
- This is called when the remote image file download has started. "download,progress"
- This is continuously called before the remote image file download has done. The event info data is of type Elm_Image_Progress. "download,done"
- This is called when the download has completed. "download,error"-
This is called when the download has failed. "load,open"
- Triggered when the file has been opened, if async open is enabled (image size is known). (since 1.19) "load,ready"
- Triggered when the image file is ready for display, if preload is enabled. (since 1.19) "load,error"
- Triggered if an async I/O or decoding error occurred, if async open or preload is enabled (since 1.19) "load,cancel"
- Triggered whenever async I/O was cancelled. (since 1.19)An example of usage for this API follows:
typedef struct _Elm_Image_Progress Elm_Image_Progress |
Structure associated with smart callback 'download,progress'.
typedef struct _Elm_Image_Error Elm_Image_Error |
Structure associated with smart callback 'download,progress'.
typedef enum _Elm_Image_Orient_Type Elm_Image_Orient |
Using Evas_Image_Orient enums.
Using Evas_Image_Orient enums.
Evas_Object * elm_image_add | ( | Evas_Object * | parent | ) |
Add a new image to the parent.
parent | The parent object |
References EINA_SAFETY_ON_NULL_RETURN_VAL.
Eina_Bool elm_image_file_set | ( | Evas_Object * | obj, |
const char * | file, | ||
const char * | group | ||
) |
Set the file that will be used as the image's source.
obj | The image object |
file | The path to file that will be used as image source |
group | The group that the image belongs to, in case it's an EET (including Edje case) file. This can be used as a key inside evas image cache if this is a normal image file not eet file. |
EINA_TRUE
= success, EINA_FALSE
= error)".edj"
, for this case).group
differently for each object. Or image objects will share one evas image cache entry and you will get unwanted frames. References EINA_FALSE, and EINA_TRUE.
void elm_image_file_get | ( | const Eo * | obj, |
const char ** | file, | ||
const char ** | group | ||
) |
Get the file that will be used as image.
[out] | file | The path to file that will be used as image source |
[out] | group | The group that the image belongs to, in case it's an EET (including Edje case) file. This can be used as a key inside evas image cache if this is a normal image file not eet file. |
Referenced by elm_icon_file_get().
void elm_image_prescale_set | ( | Evas_Object * | obj, |
int | size | ||
) |
Set the prescale size for the image.
obj | The image object |
size | The prescale size. This value is used for both width and height. |
This function sets a new size for pixmap representation of the given image. It allows the image to be loaded already in the specified size, reducing the memory usage and load time when loading a big image with load size set to a smaller size.
It's equivalent to the elm_bg_load_size_set() function for bg.
References EINA_SIZE2D.
Referenced by elm_icon_prescale_set(), and elm_photo_size_set().
int elm_image_prescale_get | ( | const Evas_Object * | obj | ) |
Get the prescale size for the image.
obj | The image object |
References MAX.
Referenced by elm_icon_prescale_get().
Eina_Bool elm_image_mmap_set | ( | Evas_Object * | obj, |
const Eina_File * | file, | ||
const char * | group | ||
) |
Set the file that will be used as the image's source.
obj | The image object |
file | The handler to an Eina_File that will be used as image source |
group | The group that the image belongs to, in case it's an EET (including Edje case) file. This can be used as a key inside evas image cache if this is a normal image file not eet file. |
EINA_TRUE
= success, EINA_FALSE
= error)".edj"
, for this case).group
differently for each object. Or image objects will share one evas image cache entry and you will get unwanted frames. References EINA_FALSE.
void elm_image_smooth_set | ( | Evas_Object * | obj, |
Eina_Bool | smooth | ||
) |
Control the smooth effect for an image.
Set the scaling algorithm to be used when scaling the image. Smooth scaling provides a better resulting image, but is slower.
The smooth scaling should be disabled when making animations that change the image size, since it will be faster. Animations that don't require resizing of the image can keep the smooth scaling enabled (even if the image is already scaled, since the scaled image will be cached).
[in] | smooth | true if smooth scaling should be used, false otherwise. Default is true . |
References EINA_SAFETY_ON_FALSE_RETURN.
Referenced by elm_icon_smooth_set().
Eina_Bool elm_image_smooth_get | ( | const Evas_Object * | obj | ) |
Get the smooth effect for an image.
Get the scaling algorithm to be used when scaling the image. Smooth scaling provides a better resulting image, but is slower.
The smooth scaling should be disabled when making animations that change the image size, since it will be faster. Animations that don't require resizing of the image can keep the smooth scaling enabled (even if the image is already scaled, since the scaled image will be cached).
true
if smooth scaling should be used, false
otherwise. Default is true
. References EINA_FALSE, and EINA_SAFETY_ON_FALSE_RETURN_VAL.
Referenced by elm_icon_smooth_get().
void elm_image_animated_play_set | ( | Evas_Object * | obj, |
Eina_Bool | play | ||
) |
Start or stop an image object's animation.
To actually start playing any image object's animation, if it supports it, one must do something like:
elm_image_animated_set() will enable animation on the image, but not start it yet. This is the function one uses to start and stop animations on image objects.
obj | The image object | |
[in] | play | EINA_TRUE to start the animation, EINA_FALSE otherwise. Default is EINA_FALSE . |
Referenced by elm_icon_animated_play_set().
Eina_Bool elm_image_animated_play_get | ( | const Evas_Object * | obj | ) |
Get whether an image object is under animation or not.
obj | The image object |
EINA_TRUE
, if the image is being animated, EINA_FALSE
otherwise.References EINA_FALSE.
Referenced by elm_icon_animated_play_get().
void elm_image_animated_set | ( | Evas_Object * | obj, |
Eina_Bool | anim | ||
) |
Set whether an image object (which supports animation) is to animate itself or not.
An image object, even if it supports animation, will be displayed by default without animation. Call this function with animated set to EINA_TRUE
to enable its animation. To start or stop the animation, actually, use elm_image_animated_play_set().
obj | The image object | |
[in] | anim | EINA_TRUE if the object is to animate itself, EINA_FALSE otherwise. Default is EINA_FALSE . |
Referenced by elm_icon_animated_set().
Eina_Bool elm_image_animated_get | ( | const Evas_Object * | obj | ) |
Get whether an image object has animation enabled or not.
obj | The image object |
EINA_TRUE
if the image has animation enabled, EINA_FALSE
otherwise.References EINA_FALSE.
Referenced by elm_icon_animated_get().
Eina_Bool elm_image_animated_available_get | ( | const Evas_Object * | obj | ) |
Get whether an image object supports animation or not.
EINA_TRUE
if the image supports animation, EINA_FALSE
otherwise.This function returns if this Elementary image object's internal image can be animated. Currently Evas only supports GIF animation. If the return value is EINA_FALSE, other elm_image_animated_xxx
API calls won't work.
Referenced by elm_icon_animated_available_get().
void elm_image_editable_set | ( | Evas_Object * | obj, |
Eina_Bool | set | ||
) |
Contrtol if the image is 'editable'.
This means the image is a valid drag target for drag and drop, and can be cut or pasted too.
[in] | set | Turn on or off editability. Default is false . |
Referenced by elm_photo_editable_set().
Eina_Bool elm_image_editable_get | ( | const Evas_Object * | obj | ) |
Contrtol if the image is 'editable'.
This means the image is a valid drag target for drag and drop, and can be cut or pasted too.
false
. Referenced by elm_photo_editable_get().
Eina_Bool elm_image_memfile_set | ( | Evas_Object * | obj, |
const void * | img, | ||
size_t | size, | ||
const char * | format, | ||
const char * | key | ||
) |
Set a location in memory to be used as an image object's source bitmap.
This function is handy when the contents of an image file are mapped in memory, for example.
The format
string should be something like $"png", $"jpg", $"tga", $"tiff", $"bmp" etc, when provided ($NULL, on the contrary). This improves the loader performance as it tries the "correct" loader first, before trying a range of other possible loaders until one succeeds.
[in] | img | The binary data that will be used as image source |
[in] | size | The size of binary data blob img |
[in] | format | (Optional) expected format of img bytes |
[in] | key | Optional indexing key of img to be passed to the image loader (eg. if img is a memory-mapped EET file) |
true
= success, false
= errorReferences EINA_FALSE, EINA_SAFETY_ON_NULL_RETURN_VAL, EINA_TRUE, ERR, EVAS_LOAD_ERROR_NONE, evas_load_error_str(), evas_object_image_load_error_get(), evas_object_image_memfile_set(), and evas_object_image_preload().
Referenced by elm_icon_memfile_set().
void elm_image_fill_outside_set | ( | Evas_Object * | obj, |
Eina_Bool | fill_outside | ||
) |
Control if the image fills the entire object area, when keeping the aspect ratio.
When the image should keep its aspect ratio even if resized to another aspect ratio, there are two possibilities to resize it: keep the entire image inside the limits of height and width of the object ($fill_outside is false
) or let the extra width or height go outside of the object, and the image will fill the entire object ($fill_outside is true
).
false
.[in] | fill_outside | true if the object is filled outside, false otherwise. Default is false . |
Referenced by elm_icon_fill_outside_set(), and elm_photo_fill_inside_set().
Eina_Bool elm_image_fill_outside_get | ( | const Evas_Object * | obj | ) |
Control if the image fills the entire object area, when keeping the aspect ratio.
When the image should keep its aspect ratio even if resized to another aspect ratio, there are two possibilities to resize it: keep the entire image inside the limits of height and width of the object ($fill_outside is false
) or let the extra width or height go outside of the object, and the image will fill the entire object ($fill_outside is true
).
false
.true
if the object is filled outside, false
otherwise. Default is false
. References EINA_FALSE.
Referenced by elm_icon_fill_outside_get().
void elm_image_preload_disabled_set | ( | Evas_Object * | obj, |
Eina_Bool | disabled | ||
) |
Enable or disable preloading of the image.
[in] | disabled | If true, preloading will be disabled |
References evas_object_image_preload(), and evas_object_show().
Referenced by elm_bg_file_set(), and elm_icon_preload_disabled_set().
void elm_image_orient_set | ( | Evas_Object * | obj, |
Elm_Image_Orient | orient | ||
) |
Contrtol the image orientation.
This function allows to rotate or flip the given image.
[in] | orient | The image orientation Elm.Image.Orient Default is ELM_IMAGE_ORIENT_NONE. |
References EINA_SAFETY_ON_FALSE_RETURN.
Elm_Image_Orient elm_image_orient_get | ( | const Evas_Object * | obj | ) |
Contrtol the image orientation.
This function allows to rotate or flip the given image.
References ELM_IMAGE_ORIENT_NONE.
Evas_Object * elm_image_object_get | ( | const Evas_Object * | obj | ) |
Get the inlined image object of the image widget.
This function allows one to get the underlying Evas_Object
of type Image from this elementary widget. It can be useful to do things like get the pixel data, save the image to a file, etc.
Evas_Object_Image
or Edje_Object
depending on image file type.Referenced by elm_icon_object_get().
void elm_image_object_size_get | ( | const Evas_Object * | obj, |
int * | w, | ||
int * | h | ||
) |
Get the current size of the image.
This is the real size of the image, not the size of the object.
[out] | w | Pointer to store width, or NULL. |
[out] | h | Pointer to store height, or NULL. |
Referenced by elm_icon_size_get().
void elm_image_resizable_set | ( | Evas_Object * | obj, |
Eina_Bool | up, | ||
Eina_Bool | down | ||
) |
Control if the object is (up/down) resizable.
This function limits the image resize ability. If size_up
is set to false
, the object can't have its height or width resized to a value higher than the original image size. Same is valid for size_down
.
[in] | up | A bool to set if the object is resizable up. Default is true . |
[in] | down | A bool to set if the object is resizable down. Default is true . |
Referenced by elm_icon_resizable_set().
void elm_image_resizable_get | ( | const Evas_Object * | obj, |
Eina_Bool * | up, | ||
Eina_Bool * | down | ||
) |
Control if the object is (up/down) resizable.
This function limits the image resize ability. If size_up
is set to false
, the object can't have its height or width resized to a value higher than the original image size. Same is valid for size_down
.
[out] | up | A bool to set if the object is resizable up. Default is true . |
[out] | down | A bool to set if the object is resizable down. Default is true . |
Referenced by elm_icon_resizable_get().
void elm_image_no_scale_set | ( | Evas_Object * | obj, |
Eina_Bool | no_scale | ||
) |
Control scaling behaviour of this object.
This function disables scaling of the elm_image widget through the function elm_object_scale_set(). However, this does not affect the widget size/resize in any way. For that effect, take a look at elm_image_resizable_get and efl_gfx_entity_scale_get
[in] | no_scale | true if the object is not scalable, false otherwise. Default is false . |
Referenced by elm_icon_no_scale_set().
Eina_Bool elm_image_no_scale_get | ( | const Evas_Object * | obj | ) |
Control scaling behaviour of this object.
This function disables scaling of the elm_image widget through the function elm_object_scale_set(). However, this does not affect the widget size/resize in any way. For that effect, take a look at elm_image_resizable_get and efl_gfx_entity_scale_get
true
if the object is not scalable, false
otherwise. Default is false
. References EINA_FALSE.
Referenced by elm_icon_no_scale_get().
void elm_image_aspect_fixed_set | ( | Evas_Object * | obj, |
Eina_Bool | fixed | ||
) |
Control whether the internal image's aspect ratio is fixed to the original image's aspect ratio.
[in] | fixed | @ true if the aspect ratio is fixed |
Referenced by elm_icon_aspect_fixed_set(), and elm_photo_aspect_fixed_set().
Eina_Bool elm_image_aspect_fixed_get | ( | const Evas_Object * | obj | ) |
Get whether the internal image's aspect ratio is fixed to the original image's.
References EINA_FALSE.
Referenced by elm_icon_aspect_fixed_get(), and elm_photo_aspect_fixed_get().
void elm_image_async_open_set | ( | Evas_Object * | obj, |
Eina_Bool | async | ||
) |
Enable asynchronous file I/O for elm_image_file_set.
obj | The image object | |
[in] | async | @ true will make elm_image_file_set() an asynchronous operation |
If true
, this will make elm_image_file_set() an asynchronous operation. Use of this function is not recommended and the standard EO-based asynchronous I/O API should be preferred instead.
References EINA_SAFETY_ON_FALSE_RETURN.