mirror of https://github.com/SixLabors/ImageSharp
2 changed files with 23 additions and 3 deletions
@ -1,10 +1,27 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
// Copyright (c) Six Labors and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
|
|||
using System.IO; |
|||
using SixLabors.ImageSharp.PixelFormats; |
|||
|
|||
namespace SixLabors.ImageSharp.Formats.WebP |
|||
{ |
|||
/// <summary>
|
|||
/// Image decoder for generating an image out of a webp stream.
|
|||
/// </summary>
|
|||
public sealed class WebPDecoder : IImageDecoder |
|||
{ |
|||
/// <inheritdoc/>
|
|||
public Image<TPixel> Decode<TPixel>(Configuration configuration, Stream stream) |
|||
where TPixel : struct, IPixel<TPixel> |
|||
{ |
|||
throw new System.NotImplementedException(); |
|||
} |
|||
|
|||
/// <inheritdoc/>
|
|||
public Image Decode(Configuration configuration, Stream stream) |
|||
{ |
|||
throw new System.NotImplementedException(); |
|||
} |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue