[EGIT] [core/efl] master 01/01: evas: Updated documentation of evas_object_image_save.

2016-01-23 Thread Ji-Youn Park
jypark pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d395a867a44e7d30e764f4900679895cd8933be2

commit d395a867a44e7d30e764f4900679895cd8933be2
Author: Ji-Youn Park 
Date:   Sat Jan 23 17:16:34 2016 +0830

   evas: Updated documentation of evas_object_image_save.
---
 src/lib/evas/Evas_Legacy.h | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index cc61fbd..7f2b3a5 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -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).

-- 




[EGIT] [core/efl] master 01/01: evas: Updated documentation of evas_object_image_save.

2016-01-23 Thread Ji-Youn Park
jypark pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=c11764534bb71ec3fbcf5e91389277c730b0f1e9

commit c11764534bb71ec3fbcf5e91389277c730b0f1e9
Author: Ji-Youn Park 
Date:   Sat Jan 23 18:06:07 2016 +0830

   evas: Updated documentation of evas_object_image_save.
---
 src/lib/evas/Evas_Legacy.h | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index 7f2b3a5..8db7adc 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -2673,6 +2673,7 @@ EAPI void evas_object_image_mmap_get(const Eo *obj, const 
Eina_File **f, const c
 /**
  *
  * Save the given image object's contents to an (image) file.
+ * Proxy object is image object, but it doesn't have contents. So you can't 
use this function for proxy objects.
  *
  * The extension suffix on @p file will determine which saver
  * module Evas is to use when saving, thus the final file's
@@ -2682,11 +2683,11 @@ 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 
+ *
+ * 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) 
+ * 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

--