當前位置: 首頁>>代碼示例>>C#>>正文


C# ColorFormat.Decode方法代碼示例

本文整理匯總了C#中ColorFormat.Decode方法的典型用法代碼示例。如果您正苦於以下問題:C# ColorFormat.Decode方法的具體用法?C# ColorFormat.Decode怎麽用?C# ColorFormat.Decode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ColorFormat的用法示例。


在下文中一共展示了ColorFormat.Decode方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: TestDecode

 public void TestDecode()
 {
     unchecked {
         var cf = new ColorFormat(16, 8, 8, 8, 0, 8, 24, 8);
         var result = cf.Decode((int)0x87654321);
         Assert.AreEqual((int)0x87654321, result);
         Assert.AreEqual((int)0x87, ((result >> 24) & 0xff));
     }
     {
         var cf = new ColorFormat(8, 4, 4, 4, 0, 4, 0, 0);
         var result = cf.Decode(0x0352);
         Assert.AreEqual((uint)0xff335522, (uint)result);
     }
 }
開發者ID:kael-ip,項目名稱:rippix,代碼行數:14,代碼來源:ColorFormat.cs

示例2: TestStandardConformity

 public void TestStandardConformity()
 {
     var color = Color.FromArgb(0x12, 0x34, 0x56, 0x78);//ARGB
     var cf = new ColorFormat(16, 8, 8, 8, 0, 8, 24, 8);
     Assert.AreEqual(color.ToArgb(), cf.Decode(color.ToArgb()));
     Assert.AreEqual(0x34, (color.ToArgb() >> 16) & 0xff);
     Assert.AreEqual(0x12, (color.ToArgb() >> 24) & 0xff);
 }
開發者ID:kael-ip,項目名稱:rippix,代碼行數:8,代碼來源:ColorFormat.cs


注:本文中的ColorFormat.Decode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。