c#中擷取顏色的argb值

來源:互聯網
上載者:User

標籤:c#   顏色   學習   it   

C# 擷取顏色的argb的值

執行個體:

 UInt16 C = 0x597f; //16進位顏色值            byte R, G, B; //8位RGB值            R = (byte)(C >> 10); //取出高位R的分量            G = (byte)((C >> 5) & 0x1f); //取出高位G的分量            B = (byte)(C & 0x1f); //取出高位B的分量            Color a = Color.FromArgb(255, R, G, B);

FromArgb(a,r,g,b):

a只的是alpha  RGB是三中顏色:紅綠藍

650) this.width=650;" src="http://s4.51cto.com/wyfs02/M02/7E/78/wKiom1cA78byCx97AABb8eAY8Hk695.png" title="QQ20160403182548.png" alt="wKiom1cA78byCx97AABb8eAY8Hk695.png" />學習成就夢想!

本文出自 “Frank” 部落格,請務必保留此出處http://cyg2001.blog.51cto.com/11309618/1759912

c#中擷取顏色的argb值

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.