convert hex to System.Drawing.Color

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default convert hex to System.Drawing.Color

    Hi,

    Here is the sample.

    int oleColor = 0xFF00;
    // Translate oleColor to a GDI+ Color structure.
    Color myColor = ColorTranslator.FromOle(oleColor);

    regards
    Sreejumon[MVP]
    DOTNET makes IT happen

    >-----Original Message-----
    >Hi,
    >I have a hex color and I need to convert it to a Color
    class. How do i do
    >this? thanks
    >-trevor
    >
    >
    >.
    >
    Sreejumon[MVP] Guest

  2. Similar Questions and Discussions

    1. system.drawing ASP.NET VB Problem
      I'm having probelms trying to write text to an image coming from a database. I started this using the article on this site but the majority of all...
    2. System.Drawing and GDI+ Question - Please help
      I have a winforms control that draws a rectangle for a boarder and positions some graphical elements around the control to create the boarder effect...
    3. drawing/color palette
      Hi Any one who can help me how to use the color or drawing palette on my director educational program,so that the kids can draw or practice on? ...
    4. Drawing.Color Problem
      Greetings, In creating a server control I added a property of type System.Drawing.Color. When the control is rendered, it generates a style...
    5. Line drawing bleeding color into background
      I use Photoshop to create graphics for the library I work in. I used it to make a floorplan of the library--a line drawing of black on a white...
  3. #2

    Default Re: convert hex to System.Drawing.Color

    Hi Trevor,

    You want ColorTranslator

    Dim htmlColor As String = "#ff11aa"
    Dim myColor As Color = ColorTranslator.FromHtml(htmlColor)
    Label1.ForeColor = myColor

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingColorTranslatorClassFromHtmlTopi c.asp[/url]

    Does this help?

    Ken
    MVP [ASP.NET]

    "Trevor Hartman" <synapsee@hotmail.com> wrote in message
    news:%23ZAMvpCPDHA.1624@tk2msftngp13.phx.gbl...
    Hi,
    I have a hex color and I need to convert it to a Color class. How do i do
    this? thanks
    -trevor



    Ken Cox [Microsoft MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139