Fix typo 53/239153/2 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_wearable_hotfix tizen_5.5 tizen_5.5_wearable_hotfix accepted/tizen/5.5/unified/20200724.222800 accepted/tizen/5.5/unified/wearable/hotfix/20201027.120511 submit/tizen_5.5/20200722.085243 submit/tizen_5.5_wearable_hotfix/20201026.184302
authorhj kim <backto.kim@samsung.com>
Wed, 22 Jul 2020 06:50:06 +0000 (15:50 +0900)
committerhj kim <backto.kim@samsung.com>
Wed, 22 Jul 2020 06:56:05 +0000 (06:56 +0000)
Change-Id: I545005f3305b0e8f2df65fa332ac15e39ae9c05a

include/image_util_encode.h

index c591be5886734392f2049d7c79e17cfc24821d89..0df691d66b4418c12c4c5f1c0c41aa55ddae6311 100644 (file)
@@ -422,7 +422,7 @@ int image_util_encode_run_async(image_util_encode_h handle, image_util_encode_co
 * @since_tizen 5.5
 *
 * @remarks If any functions at the pre-condition are not called first, #IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned.\n
-*          The only supported colorspace for BMP, GIf and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
+*          The only supported colorspace for BMP, GIF and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
 *          To get supported colorspaces for JPEG format, you can use image_util_foreach_supported_colorspace().\n
 *          http://tizen.org/privilege/mediastorage is required if @a file_path value is media storage.\n
 *          http://tizen.org/privilege/externalstorage is required if @a file_path value is external storage.
@@ -457,7 +457,7 @@ int image_util_encode_run_to_file(image_util_encode_h handle, image_util_image_h
 *
 * @remarks If any functions at the pre-condition are not called first, #IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned.\n
 *          The @a buffer should be released using free().\n
-*          The only supported colorspace for BMP, GIf and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
+*          The only supported colorspace for BMP, GIF and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
 *          To get supported colorspaces for JPEG format, you can use image_util_foreach_supported_colorspace().
 *
 * @param[in] handle The handle of image util encoding
@@ -489,7 +489,7 @@ int image_util_encode_run_to_buffer(image_util_encode_h handle, image_util_image
 * @since_tizen 5.5
 *
 * @remarks If any functions at the pre-condition are not called first, #IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned.\n
-*          The only supported colorspace for BMP, GIf and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
+*          The only supported colorspace for BMP, GIF and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
 *          To get supported colorspaces for JPEG format, you can use image_util_foreach_supported_colorspace().\n
 *          http://tizen.org/privilege/mediastorage is required if @a file_path value is media storage.\n
 *          http://tizen.org/privilege/externalstorage is required if @a file_path value is external storage.
@@ -524,7 +524,7 @@ int image_util_encode_run_async_to_file(image_util_encode_h handle, image_util_i
 * @since_tizen 5.5
 *
 * @remarks If any functions at the pre-condition are not called first, #IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned.\n
-*          The only supported colorspace for BMP, GIf and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
+*          The only supported colorspace for BMP, GIF and PNG is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
 *          To get supported colorspaces for JPEG format, you can use image_util_foreach_supported_colorspace().
 *
 * @param[in] handle The handle of image util encoding
@@ -599,7 +599,7 @@ int image_util_agif_encode_create(image_util_agif_encode_h *handle);
 * @brief Encodes an image and adds the encoded image to the frames of the animated GIF.
 * @since_tizen 5.5
 *
-* @remarks This function should be called for each @a image which you want to add to the animated GIF. Eeach @a image should be the same size.\n
+* @remarks This function should be called for each @a image which you want to add to the animated GIF. Each @a image should be the same size.\n
 *          The supported colorspace is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n
 *          You should call image_util_agif_encode_save_to_file() or image_util_agif_encode_save_to_buffer() to save the animated GIF.\n
 *          If you call this function after image_util_agif_encode_save_to_file() or image_util_agif_encode_save_to_buffer() function is called,