From 7892392fe8de96c9e28d51ce3e36cd80b836e2ac Mon Sep 17 00:00:00 2001 From: Jiyong Min Date: Tue, 4 Jul 2017 11:49:08 +0900 Subject: [PATCH] Add C# level description in thumbnail-utility Change-Id: Ib77b4ef93e43f4f64a516e74705c57efd5f7fd6d Signed-off-by: Jiyong Min --- src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailData.cs | 3 +++ src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailExtractor.cs | 5 +++++ 2 files changed, 8 insertions(+) mode change 100644 => 100755 src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailData.cs mode change 100644 => 100755 src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailExtractor.cs diff --git a/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailData.cs b/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailData.cs old mode 100644 new mode 100755 index 1a01ecb..3e2018a --- a/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailData.cs +++ b/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailData.cs @@ -31,16 +31,19 @@ namespace Tizen.Multimedia /// /// The thumbnail data. /// + /// 3 public byte[] Thumbnail { get; } /// /// The width of the thumbnail. /// + /// 3 public int Width { get; } /// /// The height of the thumbnail. /// + /// 3 public int Height { get; } } } diff --git a/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailExtractor.cs b/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailExtractor.cs old mode 100644 new mode 100755 index eea6290..6666c2d --- a/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailExtractor.cs +++ b/src/Tizen.Multimedia.Util/ThumbnailExtractor/ThumbnailExtractor.cs @@ -37,6 +37,7 @@ namespace Tizen.Multimedia /// /// Thumbnail extractor constructor /// + /// 3 /// /// If you need the thumbnail of the specified size, use ThumbnailExtractor(path, width, height) or ThumbnailExtractor(path, size). /// @@ -104,6 +105,7 @@ namespace Tizen.Multimedia /// /// Thumbnail extractor constructor /// + /// 3 /// /// If you need the thumbnail of the default size, use ThumbnailExtractor(path). The default size is 320x240. \n /// If the set width is not a multiple of 8, it can be changed by inner process. \n @@ -124,6 +126,7 @@ namespace Tizen.Multimedia /// /// Thumbnail extractor constructor /// + /// 3 /// /// If you need the thumbnail of the default size, use ThumbnailExtractor(path). The default size is 320x240. \n /// If the set width is not a multiple of 8, it can be changed by inner process. \n @@ -143,6 +146,7 @@ namespace Tizen.Multimedia /// /// Extracts the thumbnail for the given media, asynchronously /// + /// 3 /// /// Task for creation of Thumbnail. See details. /// @@ -207,6 +211,7 @@ namespace Tizen.Multimedia /// /// Thumbnail Utility destructor /// + /// 3 ~ThumbnailExtractor() { Dispose(false); -- 2.7.4