알고리즘
-
[C#]16bit RGB Color알고리즘 2022. 1. 27. 11:16
//Hex -> RGB // ex) 0x1234 -> 16bit RGB 색상표현 //Dec -> RGB // ex) 12345 -> 16bit RGB 색상표현 public void setRGBText(string sRGBText) { string sRGB; int iRGB; if (sRGBText.Length < 5) // Hex값 일 경우 { sRGB = sRGBText.PadLeft(4, '0'); iRGB = int.Parse(sRGB, System.Globalization.NumberStyles.HexNumber); // Hex to Int sRGB = Convert.ToString(iRGB, 2).PadLeft(16, '0'); } else // Dec값 일 경우 { iRGB = Convert...