C#,silverlight中 將顏色字串的RRGGBB轉換成為顏色

iDotNetSpace發表於2010-03-24
private Color ReturnColorFromString(string color)
        {
            
string alpha = color.Substring(02);
            
string red = color.Substring(22);
            
string green = color.Substring(42);
            
string blue = color.Substring(62);

            
byte alphaByte = Convert.ToByte(alpha, 16);
            
byte redByte = Convert.ToByte(red, 16);
            
byte greenByte = Convert.ToByte(green, 16);
            
byte blueByte = Convert.ToByte(blue, 16);
            
return Color.FromArgb(alphaByte, redByte, greenByte, blueByte);
        }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-630293/,如需轉載,請註明出處,否則將追究法律責任。

相關文章