Rank: Member
Groups: Guest
Joined: 4/24/2005(UTC) Posts: 15
|
Hello,
I am working in ASP.net in VB and I would like to know if it is possible to convert hexadecimal color into RGB (or aRGB).
Thank you,
Michel
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
Hello, You can use Aurigma.GraphicsMill.RgbColor class to perform this. For example: Code:Dim color As Aurigma.GraphicsMill.RgbColor
color = Aurigma.GraphicsMill.RgbColor.FromArgb32(&H112233)
Dim a As Integer = color.A
Dim r As Integer = color.R
Dim g As Integer = color.G
Dim b As Integer = color.B
Edited by user Monday, December 24, 2007 3:26:19 PM(UTC)
| Reason: Not specified |
|
|
|
|
Rank: Member
Groups: Guest
Joined: 4/24/2005(UTC) Posts: 15
|
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.