From: Minje Ahn Date: Thu, 16 Apr 2020 08:42:38 +0000 (+0900) Subject: Change resize function to create rotated thumbnail X-Git-Tag: submit/tizen/20200416.091150^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F74%2F230974%2F1;p=platform%2Fcore%2Fapi%2Fthumbnail-util.git Change resize function to create rotated thumbnail Change-Id: I9e82723454d03162fc0f84cd61c4f928ed035b61 Signed-off-by: Minje Ahn --- diff --git a/src/thumbnail_util.c b/src/thumbnail_util.c index 334105b..cf64768 100644 --- a/src/thumbnail_util.c +++ b/src/thumbnail_util.c @@ -311,7 +311,7 @@ int thumbnail_util_extract_to_file(const char *path, unsigned int width, unsigne /* If image, check support format */ if (type == THUMBNAIL_UTIL_IMAGE) { - ret = create_image_thumbnail_to_file(path, width, height, thumbnail_path); + ret = create_image_thumbnail_to_file(path, width, height, thumbnail_path, false); } else { char ext[255] = { 0 }; ret = __thumbnail_util_get_file_ext(thumbnail_path, ext, sizeof(ext));