From: melchior Date: Sun, 8 Dec 2019 00:00:39 +0000 (-0500) Subject: W.I.P. #C - changed color channels [bug-workaround] X-Git-Tag: PR7x~38 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a58c1702ca9e6884803156a609f66dac43ab1fc1;p=automap%2Fautomap.git W.I.P. #C - changed color channels [bug-workaround] --- diff --git a/Automap/Automap_Internals.cs b/Automap/Automap_Internals.cs index 8e3daf4..71f8860 100644 --- a/Automap/Automap_Internals.cs +++ b/Automap/Automap_Internals.cs @@ -290,7 +290,7 @@ namespace Automap int col = ColorUtil.ColorOverlay(avgCol, rndCol, 0.125f); var packedFormat = ColorUtil.ColorMultiply3Clamped(col, b); - Color pixelColor = Color.FromArgb(ColorUtil.ColorR(packedFormat), ColorUtil.ColorG(packedFormat), ColorUtil.ColorB(packedFormat)); + Color pixelColor = Color.FromArgb(ColorUtil.ColorB(packedFormat), ColorUtil.ColorG(packedFormat), ColorUtil.ColorR(packedFormat)); //============ POI Population ================= if (BlockID_Designators.ContainsKey(blockId)) {