This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBmpSavedWrong.cs
106 lines (88 loc) · 3.27 KB
/
BmpSavedWrong.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.PixelFormats;
using System.IO;
using Xunit;
namespace ImageSharp.BmpBug;
public class BmpSavedWrong
{
// Fails on ImageSharp >= 2.0.0
[Fact]
public void File_SaveAndReopen_Should_Results_In_Same_PixelData()
{
// Load original bmp datamatrix into pixel array
using var dmImage = Image.Load<Rgb24>("datamatrix.bmp");
var originalPixelData = _getPixelData(dmImage);
// Save bmp image, and open saved version, then load into pixel array
using var changed = _saveAndReopen(dmImage);
var saveAndReopenedPixelData = _getPixelData(changed);
// Assert that both arrays of pixels are the same
Assert.Equal(originalPixelData, saveAndReopenedPixelData);
}
// Always succeeds
[Fact]
public void PixelArray_SaveAndReopen_Should_Results_In_Same_PixelData()
{
// Load original bmp datamatrix into pixel array
using var dmImage = _createDataMatrixImage();
var originalPixelData = _getPixelData(dmImage);
// Create new image by copying just the pixel data,
// Then save bmp image, and open saved version, then load into pixel array
using var changed = _saveAndReopen(dmImage);
var saveAndReopenedPixelData = _getPixelData(changed);
// Assert that both arrays of pixels are the same
Assert.Equal(originalPixelData, saveAndReopenedPixelData);
}
// Always succeeds
[Fact]
public void PixelArrayAndFile_Have_Same_PixelData()
{
// Load original bmp datamatrix into pixel array
using var fromFile = _createDataMatrixImage();
var originalPixelData = _getPixelData(fromFile);
// Load datamatrix from hardcoded array
using var fromArray = _createDataMatrixImage();
var saveAndReopenedPixelData = _getPixelData(fromArray);
// Assert that both arrays of pixels are the same
Assert.Equal(originalPixelData, saveAndReopenedPixelData);
}
private static Image<Rgb24> _saveAndReopen(Image<Rgb24> input)
{
using (var ms = new MemoryStream())
{
input.SaveAsBmp(ms);
ms.Position = 0;
return Image.Load<Rgb24>(ms);
}
}
private static Image<Rgb24> _createDataMatrixImage()
{
var b = new Rgb24(0x00, 0x00, 0x00);
var w = new Rgb24(0xFF, 0xFF, 0xFF);
var pixelData = new Rgb24[]
{
b, w, b, w, b, w, b, w, b, w,
b, b, w, w, b, w, b, b, w, b,
b, b, w, w, w, w, w, b, w, w,
b, b, w, w, w, b ,b ,b, w, b,
b, b, w, w, w, w, b, w, w, w,
b, w, w, w, w, w, b, b, b, b,
b, b, b, w, b, b, w, w, w, w,
b, b, b, b, w, b, b, w, w, b,
b, w, w, b, b, b, w, b, w, w,
b, b, b, b, b, b, b, b, b, b
};
return Image.LoadPixelData<Rgb24>(pixelData, 10, 10);
}
private Rgb24[] _getPixelData(Image<Rgb24> input)
{
var pixels = new Rgb24[input.Width * input.Height];
for(int y = 0; y < input.Height; y++)
{
for(int x = 0; x < input.Width; x++)
{
pixels[y * input.Width + x] = input[x, y];
}
}
return pixels;
}
}