X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Content.MediaContent%2FTizen.Content.MediaContent%2FImageInfo.cs;h=768dce04a1d9c02243ee5f155da40515a98c1527;hb=479584754c5e236c1fffa84164452535e281e0ce;hp=0a60625a2268b4babbd704485d65b631bf9994ec;hpb=e9165600acaa5075b594a78b4118a38885d40ac2;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs index 0a60625..768dce0 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/ImageInfo.cs @@ -22,6 +22,7 @@ namespace Tizen.Content.MediaContent /// /// Represents the image media stored in the device. /// + /// 4 public class ImageInfo : MediaInfo { internal ImageInfo(Interop.MediaInfoHandle handle) : base(handle) @@ -40,7 +41,6 @@ namespace Tizen.Content.MediaContent Orientation = InteropHelper.GetValue(imageHandle, Interop.ImageInfo.GetOrientation); DateTaken = InteropHelper.GetString(imageHandle, Interop.ImageInfo.GetDateTaken); - BurstId = InteropHelper.GetString(imageHandle, Interop.ImageInfo.GetBurstId); ExposureTime = InteropHelper.GetString(imageHandle, Interop.ImageInfo.GetExposureTime); FNumber = InteropHelper.GetValue(imageHandle, Interop.ImageInfo.GetFNumber); @@ -48,8 +48,6 @@ namespace Tizen.Content.MediaContent Model = InteropHelper.GetString(imageHandle, Interop.ImageInfo.GetModel); - IsBurstShot = InteropHelper.GetValue(imageHandle, Interop.ImageInfo.IsBurstShot); - } finally { @@ -61,61 +59,60 @@ namespace Tizen.Content.MediaContent /// Gets the image width in pixels. /// /// The image width in pixels. + /// 4 public int Width { get; } /// /// Gets the image height in pixels. /// /// The image height in pixels. + /// 4 public int Height { get; } /// /// Gets the orientation of image. /// /// The orientation of image. + /// 4 public Orientation Orientation { get; } /// /// Gets the date of the creation time as a formatted string. /// /// The date of the creation time as a formatted string. + /// 4 public string DateTaken { get; } /// - /// Gets the burst shot ID. - /// - /// The burst shot ID if it is a burst shot, otherwise an empty string. - /// - public string BurstId { get; } - - /// /// Gets the exposure time from EXIF. /// /// The exposure time from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public string ExposureTime { get; } /// /// Gets the FNumber from EXIF. /// - /// The FNumber from exif. + /// The FNumber from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public double FNumber { get; } /// /// Gets the ISO from EXIF. /// /// The iso from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public int Iso { get; } /// /// Gets the model from EXIF. /// /// The model from EXIF. + /// 4 + [Obsolete("Deprecated since API11; Will be removed in API13.")] public string Model { get; } - - /// - /// Gets the value indicating whether the media is a burst shot image. - /// - /// true if the media is a burst shot image, otherwise false. - public bool IsBurstShot { get; } } }