diff --git a/Bonobo/XkcdService.cs b/Bonobo/XkcdService.cs index d7f0637..4440897 100644 --- a/Bonobo/XkcdService.cs +++ b/Bonobo/XkcdService.cs @@ -75,7 +75,7 @@ public static void PrintImageAsAscii(Bitmap image) { Color oc = image.GetPixel(j, i); int grayScale = (int)((oc.R * 0.3) + (oc.G * 0.59) + (oc.B * 0.11)); - Console.Write(grayScale); + Console.Write(GetShade(grayScale)); } Console.WriteLine("");