mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
7.5 KiB
170 lines
7.5 KiB
// Copyright (c) Six Labors and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System.IO;
|
|
|
|
using SixLabors.ImageSharp.Formats.WebP;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Tests.TestUtilities.ReferenceCodecs;
|
|
|
|
using Xunit;
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Formats.WebP
|
|
{
|
|
using static SixLabors.ImageSharp.Tests.TestImages.WebP;
|
|
|
|
public class WebPDecoderTests
|
|
{
|
|
[Theory]
|
|
[InlineData(Lossless.Lossless1, 1000, 307, 24)]
|
|
[InlineData(Lossless.Lossless2, 1000, 307, 24)]
|
|
[InlineData(Lossy.Alpha.LossyAlpha1, 1000, 307, 24)]
|
|
[InlineData(Lossy.Alpha.LossyAlpha2, 1000, 307, 24)]
|
|
[InlineData(Animated.Animated1, 400, 400, 24)]
|
|
public void Identify_DetectsCorrectDimensions(string imagePath, int expectedWidth, int expectedHeight, int expectedBitsPerPixel)
|
|
{
|
|
var testFile = TestFile.Create(imagePath);
|
|
using (var stream = new MemoryStream(testFile.Bytes, false))
|
|
{
|
|
IImageInfo imageInfo = Image.Identify(stream);
|
|
Assert.NotNull(imageInfo);
|
|
Assert.Equal(expectedWidth, imageInfo.Width);
|
|
Assert.Equal(expectedHeight, imageInfo.Height);
|
|
Assert.Equal(expectedBitsPerPixel, imageInfo.PixelType.BitsPerPixel);
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(Lossy.Alpha.LossyAlpha1, 1000, 307, 24)]
|
|
public void DecodeLossyImage_Tmp(string imagePath, int expectedWidth, int expectedHeight, int expectedBitsPerPixel)
|
|
{
|
|
var testFile = TestFile.Create(imagePath);
|
|
using (var stream = new MemoryStream(testFile.Bytes, false))
|
|
{
|
|
var image = Image.Load(stream);
|
|
Assert.Equal(expectedWidth, image.Width);
|
|
Assert.Equal(expectedHeight, image.Height);
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[WithFile(Lossless.NoTransform1, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.NoTransform2, PixelTypes.Rgba32)]
|
|
public void WebpDecoder_CanDecode_Lossless_WithoutTransforms<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
using (Image<TPixel> image = provider.GetImage(new WebPDecoder()))
|
|
{
|
|
image.DebugSave(provider);
|
|
image.CompareToOriginal(provider, new MagickReferenceDecoder());
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[WithFile(Lossless.GreenTransform1, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.GreenTransform2, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.GreenTransform3, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.GreenTransform4, PixelTypes.Rgba32)]
|
|
// TODO: Reference decoder throws here MagickCorruptImageErrorException
|
|
//[WithFile(Lossless.GreenTransform5, PixelTypes.Rgba32)]
|
|
public void WebpDecoder_CanDecode_Lossless_WithSubstractGreenTransform<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
using (Image<TPixel> image = provider.GetImage(new WebPDecoder()))
|
|
{
|
|
image.DebugSave(provider);
|
|
image.CompareToOriginal(provider, new MagickReferenceDecoder());
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[WithFile(Lossless.ColorIndexTransform1, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ColorIndexTransform2, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ColorIndexTransform3, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ColorIndexTransform4, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ColorIndexTransform5, PixelTypes.Rgba32)]
|
|
public void WebpDecoder_CanDecode_Lossless_WithColorIndexTransform<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
using (Image<TPixel> image = provider.GetImage(new WebPDecoder()))
|
|
{
|
|
image.DebugSave(provider);
|
|
image.CompareToOriginal(provider, new MagickReferenceDecoder());
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[WithFile(Lossless.PredictorTransform1, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.PredictorTransform2, PixelTypes.Rgba32)]
|
|
public void WebpDecoder_CanDecode_Lossless_WithPredictorTransform<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
using (Image<TPixel> image = provider.GetImage(new WebPDecoder()))
|
|
{
|
|
image.DebugSave(provider);
|
|
image.CompareToOriginal(provider, new MagickReferenceDecoder());
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[WithFile(Lossless.CrossColorTransform1, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.CrossColorTransform2, PixelTypes.Rgba32)]
|
|
public void WebpDecoder_CanDecode_Lossless_WithCrossColorTransform<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
using (Image<TPixel> image = provider.GetImage(new WebPDecoder()))
|
|
{
|
|
image.DebugSave(provider);
|
|
image.CompareToOriginal(provider, new MagickReferenceDecoder());
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[WithFile(Lossless.TwoTransforms1, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms2, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms3, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms4, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms5, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms6, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms7, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms8, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms9, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms10, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms11, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms12, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms13, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms14, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms15, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.TwoTransforms16, PixelTypes.Rgba32)]
|
|
public void WebpDecoder_CanDecode_Lossless_WithTwoTransforms<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
using (Image<TPixel> image = provider.GetImage(new WebPDecoder()))
|
|
{
|
|
image.DebugSave(provider);
|
|
image.CompareToOriginal(provider, new MagickReferenceDecoder());
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[WithFile(Lossless.ThreeTransforms1, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ThreeTransforms2, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ThreeTransforms3, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ThreeTransforms4, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ThreeTransforms5, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ThreeTransforms6, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ThreeTransforms7, PixelTypes.Rgba32)]
|
|
[WithFile(Lossless.ThreeTransforms8, PixelTypes.Rgba32)]
|
|
public void WebpDecoder_CanDecode_Lossless_WithThreeTransforms<TPixel>(TestImageProvider<TPixel> provider)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
using (Image<TPixel> image = provider.GetImage(new WebPDecoder()))
|
|
{
|
|
image.DebugSave(provider);
|
|
image.CompareToOriginal(provider, new MagickReferenceDecoder());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|