コード例 #1
0
        public static string GetDeviceModels(this IWICMetadataHandlerInfo metadataHandlerInfo)
        {
            FetchIntoBuffer <char> fetcher = metadataHandlerInfo.GetDeviceModels;

            return(fetcher.FetchString());
        }
コード例 #2
0
        public static string[] GetFileExtensions(this IWICBitmapCodecInfo bitmapCodecInfo)
        {
            FetchIntoBuffer <char> fetcher = bitmapCodecInfo.GetFileExtensions;

            return(fetcher.FetchString().Split(','));
        }
コード例 #3
0
        public static string GetColorManagementVersion(this IWICBitmapCodecInfo bitmapCodecInfo)
        {
            FetchIntoBuffer <char> fetcher = bitmapCodecInfo.GetColorManagementVersion;

            return(fetcher.FetchString());
        }
コード例 #4
0
        public static string GetDeviceModels(this IWICBitmapCodecInfo bitmapCodecInfo)
        {
            FetchIntoBuffer <char> fetcher = bitmapCodecInfo.GetDeviceModels;

            return(fetcher.FetchString());
        }
コード例 #5
0
        public static string GetAuthor(this IWICComponentInfo componentInfo)
        {
            FetchIntoBuffer <char> fetcher = componentInfo.GetAuthor;

            return(fetcher.FetchString());
        }
コード例 #6
0
        public static string GetSpecVersion(this IWICComponentInfo componentInfo)
        {
            FetchIntoBuffer <char> fetcher = componentInfo.GetSpecVersion;

            return(fetcher.FetchString());
        }
コード例 #7
0
        public static string GetFriendlyName(this IWICComponentInfo componentInfo)
        {
            FetchIntoBuffer <char> fetcher = componentInfo.GetFriendlyName;

            return(fetcher.FetchString());
        }
コード例 #8
0
        public static string GetLocation(this IWICMetadataQueryReader metadataQueryReader)
        {
            FetchIntoBuffer <char> fetcher = metadataQueryReader.GetLocation;

            return(fetcher.FetchString());
        }