diff --git a/src/ImageSharp/PixelFormats/Utils/Vector4Converters.cs b/src/ImageSharp/PixelFormats/Utils/Vector4Converters.cs
index 7af2662765..8335d2fd9a 100644
--- a/src/ImageSharp/PixelFormats/Utils/Vector4Converters.cs
+++ b/src/ImageSharp/PixelFormats/Utils/Vector4Converters.cs
@@ -14,7 +14,7 @@ namespace SixLabors.ImageSharp.PixelFormats.Utils
///
/// Apply modifiers used requested by ToVector4() conversion.
///
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
+ [MethodImpl(InliningOptions.ShortMethod)]
internal static void ApplyForwardConversionModifiers(Span vectors, PixelConversionModifiers modifiers)
{
if (modifiers.IsDefined(PixelConversionModifiers.SRgbCompand))
@@ -31,7 +31,7 @@ namespace SixLabors.ImageSharp.PixelFormats.Utils
///
/// Apply modifiers used requested by FromVector4() conversion.
///
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
+ [MethodImpl(InliningOptions.ShortMethod)]
internal static void ApplyBackwardConversionModifiers(Span vectors, PixelConversionModifiers modifiers)
{
if (modifiers.IsDefined(PixelConversionModifiers.Premultiply))
diff --git a/src/ImageSharp/Processing/Processors/Transforms/Resize/ResizeProcessor{TPixel}.cs b/src/ImageSharp/Processing/Processors/Transforms/Resize/ResizeProcessor{TPixel}.cs
index ec238608e9..1daed9ee63 100644
--- a/src/ImageSharp/Processing/Processors/Transforms/Resize/ResizeProcessor{TPixel}.cs
+++ b/src/ImageSharp/Processing/Processors/Transforms/Resize/ResizeProcessor{TPixel}.cs
@@ -4,6 +4,7 @@
using System;
using System.Runtime.CompilerServices;
using SixLabors.ImageSharp.Advanced;
+using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
@@ -187,6 +188,8 @@ namespace SixLabors.ImageSharp.Processing.Processors.Transforms
bool compand,
bool premultiplyAlpha)
{
+ bool pixelHasNoAlpha = PixelOperations.Instance.GetPixelTypeInfo()?.AlphaRepresentation == PixelAlphaRepresentation.None;
+ premultiplyAlpha &= !pixelHasNoAlpha;
PixelConversionModifiers conversionModifiers = GetModifiers(compand, premultiplyAlpha);
Buffer2DRegion sourceRegion = source.PixelBuffer.GetRegion(sourceRectangle);
diff --git a/tests/ImageSharp.Benchmarks/Processing/Resize.cs b/tests/ImageSharp.Benchmarks/Processing/Resize.cs
index 571c92cc87..81fdbfb314 100644
--- a/tests/ImageSharp.Benchmarks/Processing/Resize.cs
+++ b/tests/ImageSharp.Benchmarks/Processing/Resize.cs
@@ -215,4 +215,35 @@ namespace SixLabors.ImageSharp.Benchmarks
// SystemDrawing | Core | Core | 3032 | 400 | 118.3 ms | 6.899 ms | 0.3781 ms | 1.00 | 0.00 | - | - | - | 96 B |
// 'ImageSharp, MaxDegreeOfParallelism = 1' | Core | Core | 3032 | 400 | 122.4 ms | 15.069 ms | 0.8260 ms | 1.03 | 0.01 | - | - | - | 15712 B |
}
+
+ public class Resize_Bicubic_Compare_Rgba32_Rgb24
+ {
+ private Resize_Bicubic_Rgb24 rgb24;
+ private Resize_Bicubic_Rgba32 rgba32;
+
+ [GlobalSetup]
+ public void Setup()
+ {
+ this.rgb24 = new Resize_Bicubic_Rgb24();
+ this.rgb24.Setup();
+ this.rgba32 = new Resize_Bicubic_Rgba32();
+ this.rgba32.Setup();
+ }
+
+ [GlobalCleanup]
+ public void Cleanup()
+ {
+ this.rgb24.Cleanup();
+ this.rgba32.Cleanup();
+ }
+
+ [Benchmark]
+ public void SystemDrawing() => this.rgba32.SystemDrawing();
+
+ [Benchmark(Baseline = true)]
+ public void Rgba32() => this.rgba32.ImageSharp_P1();
+
+ [Benchmark]
+ public void Rgb24() => this.rgb24.ImageSharp_P1();
+ }
}
diff --git a/tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeTests.cs b/tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeTests.cs
index 42cf1e3c12..3c0faf4991 100644
--- a/tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeTests.cs
+++ b/tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeTests.cs
@@ -19,9 +19,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
public class ResizeTests
{
private const PixelTypes CommonNonDefaultPixelTypes =
- PixelTypes.Rgba32 | PixelTypes.Bgra32 | PixelTypes.RgbaVector;
-
- private const PixelTypes DefaultPixelType = PixelTypes.Rgba32;
+ PixelTypes.Rgba32 | PixelTypes.Bgra32 | PixelTypes.Bgr24 | PixelTypes.RgbaVector;
public static readonly string[] AllResamplerNames = TestUtils.GetAllResamplerNames();
@@ -188,7 +186,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithTestPatternImages(100, 100, DefaultPixelType)]
+ [WithTestPatternImages(100, 100, PixelTypes.Rgba32)]
public void Resize_Compand(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -202,8 +200,8 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFile(TestImages.Png.Kaboom, DefaultPixelType, false)]
- [WithFile(TestImages.Png.Kaboom, DefaultPixelType, true)]
+ [WithFile(TestImages.Png.Kaboom, PixelTypes.Rgba32, false)]
+ [WithFile(TestImages.Png.Kaboom, PixelTypes.Rgba32, true)]
public void Resize_DoesNotBleedAlphaPixels(TestImageProvider provider, bool compand)
where TPixel : unmanaged, IPixel
{
@@ -217,8 +215,8 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFile(TestImages.Png.Kaboom, DefaultPixelType, false)]
- [WithFile(TestImages.Png.Kaboom, DefaultPixelType, true)]
+ [WithFile(TestImages.Png.Kaboom, PixelTypes.Rgba32, false)]
+ [WithFile(TestImages.Png.Kaboom, PixelTypes.Rgba32, true)]
public void Resize_PremultiplyAlpha(TestImageProvider provider, bool premultiplyAlpha)
where TPixel : unmanaged, IPixel
{
@@ -243,7 +241,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFile(TestImages.Gif.Giphy, DefaultPixelType)]
+ [WithFile(TestImages.Gif.Giphy, PixelTypes.Rgba32)]
public void Resize_IsAppliedToAllFrames(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -265,7 +263,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32)]
public void Resize_ThrowsForWrappedMemoryImage(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -283,10 +281,10 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType, 1)]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType, 4)]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType, 8)]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType, -1)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24, 1)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24, 4)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24, 8)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24, -1)]
public void Resize_WorksWithAllParallelismLevels(
TestImageProvider provider,
int maxDegreeOfParallelism)
@@ -305,27 +303,27 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), nameof(AllResamplerNames), DefaultPixelType, 0.5f, null, null)]
+ [WithFileCollection(nameof(CommonTestImages), nameof(AllResamplerNames), PixelTypes.Rgba32 | PixelTypes.Rgb24, 0.5f, null, null)]
[WithFileCollection(
nameof(CommonTestImages),
nameof(SmokeTestResamplerNames),
- DefaultPixelType,
+ PixelTypes.Rgba32 | PixelTypes.Rgb24,
0.3f,
null,
null)]
[WithFileCollection(
nameof(CommonTestImages),
nameof(SmokeTestResamplerNames),
- DefaultPixelType,
+ PixelTypes.Rgba32 | PixelTypes.Rgb24,
1.8f,
null,
null)]
- [WithTestPatternImages(nameof(SmokeTestResamplerNames), 100, 100, DefaultPixelType, 0.5f, null, null)]
- [WithTestPatternImages(nameof(SmokeTestResamplerNames), 100, 100, DefaultPixelType, 1f, null, null)]
- [WithTestPatternImages(nameof(SmokeTestResamplerNames), 50, 50, DefaultPixelType, 8f, null, null)]
- [WithTestPatternImages(nameof(SmokeTestResamplerNames), 201, 199, DefaultPixelType, null, 100, 99)]
- [WithTestPatternImages(nameof(SmokeTestResamplerNames), 301, 1180, DefaultPixelType, null, 300, 480)]
- [WithTestPatternImages(nameof(SmokeTestResamplerNames), 49, 80, DefaultPixelType, null, 301, 100)]
+ [WithTestPatternImages(nameof(SmokeTestResamplerNames), 100, 100, PixelTypes.Rgba32, 0.5f, null, null)]
+ [WithTestPatternImages(nameof(SmokeTestResamplerNames), 100, 100, PixelTypes.Rgba32, 1f, null, null)]
+ [WithTestPatternImages(nameof(SmokeTestResamplerNames), 50, 50, PixelTypes.Rgba32, 8f, null, null)]
+ [WithTestPatternImages(nameof(SmokeTestResamplerNames), 201, 199, PixelTypes.Rgba32, null, 100, 99)]
+ [WithTestPatternImages(nameof(SmokeTestResamplerNames), 301, 1180, PixelTypes.Rgba32, null, 300, 480)]
+ [WithTestPatternImages(nameof(SmokeTestResamplerNames), 49, 80, PixelTypes.Rgba32, null, 301, 100)]
public void Resize_WorksWithAllResamplers(
TestImageProvider provider,
string samplerName,
@@ -382,7 +380,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeFromSourceRectangle(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -405,12 +403,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
false));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeHeightAndKeepAspect(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -419,12 +417,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(0, image.Height / 3, false));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithTestPatternImages(10, 100, DefaultPixelType)]
+ [WithTestPatternImages(10, 100, PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeHeightCannotKeepAspectKeepsOnePixel(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -437,7 +435,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWidthAndKeepAspect(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -446,12 +444,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(image.Width / 3, 0, false));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithTestPatternImages(100, 10, DefaultPixelType)]
+ [WithTestPatternImages(100, 10, PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWidthCannotKeepAspectKeepsOnePixel(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -464,7 +462,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWithBoxPadMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -479,12 +477,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWithCropHeightMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -495,12 +493,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWithCropWidthMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -511,12 +509,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFile(TestImages.Jpeg.Issues.IncorrectResize1006, DefaultPixelType)]
+ [WithFile(TestImages.Jpeg.Issues.IncorrectResize1006, PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void CanResizeLargeImageWithCropMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -531,12 +529,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWithMaxMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -547,12 +545,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWithMinMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -560,21 +558,19 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
{
var options = new ResizeOptions
{
- Size = new Size(
- (int)Math.Round(image.Width * .75F),
- (int)Math.Round(image.Height * .95F)),
+ Size = new Size((int)Math.Round(image.Width * .75F), (int)Math.Round(image.Height * .95F)),
Mode = ResizeMode.Min
};
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWithPadMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -589,12 +585,12 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFileCollection(nameof(CommonTestImages), DefaultPixelType)]
+ [WithFileCollection(nameof(CommonTestImages), PixelTypes.Rgba32 | PixelTypes.Rgb24)]
public void ResizeWithStretchMode(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
@@ -609,14 +605,14 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms
image.Mutate(x => x.Resize(options));
image.DebugSave(provider);
- image.CompareToReferenceOutput(ValidatorComparer, provider);
+ image.CompareToReferenceOutput(ValidatorComparer, provider, appendPixelTypeToFileName: false);
}
}
[Theory]
- [WithFile(TestImages.Jpeg.Issues.ExifDecodeOutOfRange694, DefaultPixelType)]
- [WithFile(TestImages.Jpeg.Issues.ExifGetString750Transform, DefaultPixelType)]
- [WithFile(TestImages.Jpeg.Issues.ExifResize1049, DefaultPixelType)]
+ [WithFile(TestImages.Jpeg.Issues.ExifDecodeOutOfRange694, PixelTypes.Rgb24)]
+ [WithFile(TestImages.Jpeg.Issues.ExifGetString750Transform, PixelTypes.Rgb24)]
+ [WithFile(TestImages.Jpeg.Issues.ExifResize1049, PixelTypes.Rgb24)]
public void CanResizeExifIssueImages(TestImageProvider provider)
where TPixel : unmanaged, IPixel
{
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/CanResizeLargeImageWithCropMode_Rgba32_issue1006-incorrect-resize.png b/tests/Images/External/ReferenceOutput/ResizeTests/CanResizeLargeImageWithCropMode_issue1006-incorrect-resize.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/CanResizeLargeImageWithCropMode_Rgba32_issue1006-incorrect-resize.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/CanResizeLargeImageWithCropMode_issue1006-incorrect-resize.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeFromSourceRectangle_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeFromSourceRectangle_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeFromSourceRectangle_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeFromSourceRectangle_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeHeightAndKeepAspect_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeHeightAndKeepAspect_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeHeightAndKeepAspect_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeHeightAndKeepAspect_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWidthAndKeepAspect_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWidthAndKeepAspect_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWidthAndKeepAspect_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWidthAndKeepAspect_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithBoxPadMode_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithBoxPadMode_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithBoxPadMode_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithBoxPadMode_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropHeightMode_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropHeightMode_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropHeightMode_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropHeightMode_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropWidthMode_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropWidthMode_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropWidthMode_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithCropWidthMode_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMaxMode_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMaxMode_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMaxMode_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMaxMode_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMinMode_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMinMode_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMinMode_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithMinMode_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithPadMode_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithPadMode_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithPadMode_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithPadMode_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithStretchMode_Rgba32_CalliphoraPartial.png b/tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithStretchMode_CalliphoraPartial.png
similarity index 100%
rename from tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithStretchMode_Rgba32_CalliphoraPartial.png
rename to tests/Images/External/ReferenceOutput/ResizeTests/ResizeWithStretchMode_CalliphoraPartial.png
diff --git a/tests/Images/External/ReferenceOutput/ResizeTests/Resize_IsNotBoundToSinglePixelType_Bgr24_TestPattern50x50.png b/tests/Images/External/ReferenceOutput/ResizeTests/Resize_IsNotBoundToSinglePixelType_Bgr24_TestPattern50x50.png
new file mode 100644
index 0000000000..674639d482
--- /dev/null
+++ b/tests/Images/External/ReferenceOutput/ResizeTests/Resize_IsNotBoundToSinglePixelType_Bgr24_TestPattern50x50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4a9940410cca3fe98a6d7aaf0e2184779f908c569a5a34f9965fb3a4f9e6fa8f
+size 1066