From d99afaa79381ce726c3c812bb0092d22b297225f Mon Sep 17 00:00:00 2001 From: hj kim Date: Wed, 22 Jul 2020 15:50:06 +0900 Subject: [PATCH] Fix typo Change-Id: I545005f3305b0e8f2df65fa332ac15e39ae9c05a --- include/image_util_encode.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/image_util_encode.h b/include/image_util_encode.h index c591be5..0df691d 100644 --- a/include/image_util_encode.h +++ b/include/image_util_encode.h @@ -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, -- 2.7.4