|
| 1 | +using System; |
| 2 | +using System.Drawing.Imaging; |
| 3 | +using System.Drawing; |
| 4 | +using System.Drawing.Drawing2D; |
| 5 | + |
| 6 | + |
| 7 | +namespace Svg.Tests.Common |
| 8 | +{ |
| 9 | + /// <summary> |
| 10 | + /// Taken from https://web.archive.org/web/20130111215043/http://www.switchonthecode.com/tutorials/csharp-tutorial-convert-a-color-image-to-grayscale |
| 11 | + /// and slightly modified. |
| 12 | + /// Image width and height, default threshold and handling of alpha values have been adapted. |
| 13 | + /// </summary> |
| 14 | + public static class ExtensionMethods |
| 15 | + { |
| 16 | + private static readonly int ImageWidth = 64; |
| 17 | + private static readonly int ImageHeight = 64; |
| 18 | + |
| 19 | + public static float PercentageDifference(this Image img1, Image img2, byte threshold = 10) |
| 20 | + { |
| 21 | + byte[,] differences = img1.GetDifferences(img2); |
| 22 | + |
| 23 | + int diffPixels = 0; |
| 24 | + |
| 25 | + foreach (byte b in differences) |
| 26 | + { |
| 27 | + if (b > threshold) { diffPixels++; } |
| 28 | + } |
| 29 | + |
| 30 | + return diffPixels / (float)(differences.GetLength(0) * differences.GetLength(1)); |
| 31 | + } |
| 32 | + |
| 33 | + public static Bitmap Resize(this Image originalImage, int newWidth, int newHeight) |
| 34 | + { |
| 35 | + if (originalImage.Width > originalImage.Height) |
| 36 | + newWidth = originalImage.Width * newHeight / originalImage.Height; |
| 37 | + else |
| 38 | + newHeight = originalImage.Height * newWidth / originalImage.Width; |
| 39 | + |
| 40 | + var smallVersion = new Bitmap(newWidth, newHeight); |
| 41 | + using (var g = Graphics.FromImage(smallVersion)) |
| 42 | + { |
| 43 | + g.SmoothingMode = SmoothingMode.HighQuality; |
| 44 | + g.InterpolationMode = InterpolationMode.HighQualityBicubic; |
| 45 | + g.PixelOffsetMode = PixelOffsetMode.HighQuality; |
| 46 | + g.DrawImage(originalImage, 0, 0, smallVersion.Width, smallVersion.Height); |
| 47 | + } |
| 48 | + |
| 49 | + return smallVersion; |
| 50 | + } |
| 51 | + |
| 52 | + public static byte[,] GetGrayScaleValues(this Bitmap img) |
| 53 | + { |
| 54 | + byte[,] grayScale = new byte[img.Width, img.Height]; |
| 55 | + |
| 56 | + for (int y = 0; y < grayScale.GetLength(1); y++) |
| 57 | + { |
| 58 | + for (int x = 0; x < grayScale.GetLength(0); x++) |
| 59 | + { |
| 60 | + var alpha = img.GetPixel(x, y).A; |
| 61 | + var gray = img.GetPixel(x, y).R; |
| 62 | + grayScale[x, y] = (byte)Math.Abs(gray * alpha / 255); |
| 63 | + } |
| 64 | + } |
| 65 | + return grayScale; |
| 66 | + } |
| 67 | + |
| 68 | + // the colormatrix needed to grayscale an image |
| 69 | + static readonly ColorMatrix ColorMatrix = new ColorMatrix(new float[][] |
| 70 | + { |
| 71 | + new float[] {.3f, .3f, .3f, 0, 0}, |
| 72 | + new float[] {.59f, .59f, .59f, 0, 0}, |
| 73 | + new float[] {.11f, .11f, .11f, 0, 0}, |
| 74 | + new float[] {0, 0, 0, 1, 0}, |
| 75 | + new float[] {0, 0, 0, 0, 1} |
| 76 | + }); |
| 77 | + |
| 78 | + public static Bitmap GetGrayScaleVersion(this Bitmap original) |
| 79 | + { |
| 80 | + // create a blank bitmap the same size as original |
| 81 | + // https://web.archive.org/web/20130111215043/http://www.switchonthecode.com/tutorials/csharp-tutorial-convert-a-color-image-to-grayscale |
| 82 | + var newBitmap = new Bitmap(original.Width, original.Height); |
| 83 | + |
| 84 | + // get a graphics object from the new image |
| 85 | + using (var g = Graphics.FromImage(newBitmap)) |
| 86 | + // create some image attributes |
| 87 | + using (var attributes = new ImageAttributes()) |
| 88 | + { |
| 89 | + // set the color matrix attribute |
| 90 | + attributes.SetColorMatrix(ColorMatrix); |
| 91 | + |
| 92 | + // draw the original image on the new image |
| 93 | + // using the grayscale color matrix |
| 94 | + g.DrawImage(original, new Rectangle(0, 0, original.Width, original.Height), |
| 95 | + 0, 0, original.Width, original.Height, GraphicsUnit.Pixel, attributes); |
| 96 | + } |
| 97 | + |
| 98 | + return newBitmap; |
| 99 | + } |
| 100 | + |
| 101 | + public static byte[,] GetDifferences(this Image img1, Image img2) |
| 102 | + { |
| 103 | + using (var resizedThisOne = img1.Resize(ImageWidth, ImageHeight)) |
| 104 | + using (var thisOne = resizedThisOne.GetGrayScaleVersion()) |
| 105 | + using (var resizedTheOtherOne = img2.Resize(ImageWidth, ImageHeight)) |
| 106 | + using (var theOtherOne = resizedTheOtherOne.GetGrayScaleVersion()) |
| 107 | + { |
| 108 | + byte[,] differences = new byte[thisOne.Width, thisOne.Height]; |
| 109 | + byte[,] firstGray = thisOne.GetGrayScaleValues(); |
| 110 | + byte[,] secondGray = theOtherOne.GetGrayScaleValues(); |
| 111 | + |
| 112 | + for (int y = 0; y < differences.GetLength(1); y++) |
| 113 | + { |
| 114 | + for (int x = 0; x < differences.GetLength(0); x++) |
| 115 | + { |
| 116 | + differences[x, y] = (byte)Math.Abs(firstGray[x, y] - secondGray[x, y]); |
| 117 | + } |
| 118 | + } |
| 119 | + return differences; |
| 120 | + } |
| 121 | + } |
| 122 | + } |
| 123 | +} |
0 commit comments