mirror of https://github.com/SixLabors/ImageSharp
5 changed files with 65 additions and 11 deletions
@ -0,0 +1,23 @@ |
|||
// Copyright (c) Six Labors.
|
|||
// Licensed under the Six Labors Split License.
|
|||
|
|||
using SixLabors.ImageSharp.Formats.Ani; |
|||
using SixLabors.ImageSharp.Formats.Bmp; |
|||
using SixLabors.ImageSharp.Formats.Cur; |
|||
using SixLabors.ImageSharp.Formats.Icon; |
|||
using SixLabors.ImageSharp.PixelFormats; |
|||
using static SixLabors.ImageSharp.Tests.TestImages.Ani; |
|||
|
|||
namespace SixLabors.ImageSharp.Tests.Formats.Ani; |
|||
|
|||
[Trait("format", "Ani")] |
|||
[ValidateDisposedMemoryAllocations] |
|||
public class AniDecoderTests |
|||
{ |
|||
[Theory] |
|||
[WithFile(Work, PixelTypes.Rgba32)] |
|||
public void CurDecoder_Decode(TestImageProvider<Rgba32> provider) |
|||
{ |
|||
using Image<Rgba32> image = provider.GetImage(AniDecoder.Instance); |
|||
} |
|||
} |
|||
@ -0,0 +1,3 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:740353739d3763addddd383614d125918781b8879f7c1ad3c770162a3e143a33 |
|||
size 1150338 |
|||
Loading…
Reference in new issue