public static Guid[] GetPixelFormats(this IWICFormatConverterInfo formatConverterInfo)
 {
     return(FetchIntoBufferHelper.FetchArray <Guid>(formatConverterInfo.GetPixelFormats));
 }
예제 #2
0
 public static byte[] GetProfileBytes(this IWICColorContext colorContext)
 {
     return(FetchIntoBufferHelper.FetchArray <byte>(colorContext.GetProfileBytes));
 }
예제 #3
0
 public static int[] GetColors(this IWICPalette palette)
 {
     return(FetchIntoBufferHelper.FetchArray <int>(palette.GetColors));
 }
 public static Guid[] GetContainerFormats(this IWICMetadataHandlerInfo metadataHandlerInfo)
 {
     return(FetchIntoBufferHelper.FetchArray <Guid>(metadataHandlerInfo.GetContainerFormats));
 }