Converting from RGB ints to Hex

前端 未结 5 938
野的像风
野的像风 2021-02-12 11:00

What I have is R:255 G:181 B:178, and I am working in C# (for WP8, to be more specific)

I would like to convert this to a hex number to use as a color (to set the pixel

5条回答
  •  说谎
    说谎 (楼主)
    2021-02-12 11:59

    You can use ColorHelper library for this:

    using ColorHelper;
    RGB rgb = new RGB(100, 0, 100);
    HEX hex = ColorConverter.RgbToHex(rgb);
    

提交回复
热议问题