evas: Updated documentation of evas_object_image_save.

This commit is contained in:
Ji-Youn Park 2016-01-23 17:16:34 +08:30
parent 35e28b1958
commit d395a867a4
1 changed files with 6 additions and 0 deletions

View File

@ -2682,6 +2682,12 @@ EAPI void evas_object_image_mmap_get(const Eo *obj, const Eina_File **f, const c
* You can specify some flags when saving the image. Currently
* acceptable flags are @c quality and @c compress. Eg.: @c
* "quality=100 compress=9"
*
* quality is hint for the quality of image,0-100. 0 means low quality
* and saved image size is small. 100 means high quality and saved image size is big.
*
* compress is hint for the compression modes (Eet ones) or for the compression flags (Png one)
* (1 == compress, 0 = don't compress).
*
* @param[in] file The filename to be used to save the image (extension
obligatory).