Tagged Questions
The System.Drawing namespace provides access to GDI+ basic graphics functionality.
7
votes
3answers
511 views
How to check if two System.Drawing.Color structures represent the same color in 16 bit color depth?
How can I check if two System.Drawing.Color structures represent the same color in 16 bit color depth (or generally based on the value of Screen.PrimaryScreen.BitsPerPixel)?
Let's say I set ...
6
votes
5answers
712 views
Set System.Drawing.Color values
Hi how to set R G B values in System.Drawing.Color.G ?
which is like System.Drawing.Color.G=255; is not allowed because its read only
Property or indexer 'System.Drawing.Color.G' cannot be assigned ...
6
votes
2answers
4k views
Generate Color Gradient in C#
My question here is similar to the question here, except that I am working with C#.
I have two colors, and I have a predefine steps. How to retrieve a list of Colors that are the gradients between ...
6
votes
3answers
4k views
.NET - Converting Color Name Strings into System.Drawing.Color
What is the best way to turn strings like "red", "green", "yellow", "aliceblue", etc... into the actual System.Drawing.Color value?
I was looking at reflection and something about that didn't seem ...
6
votes
3answers
3k views
trying to convert rgb from a .net Color to a string such as “red” or “blue”
All of my methods are failing me in various ways.
different lighting can mess it all up too.
has anyone every trying to return a name given a rgb value? "red" "green" "blue" would be enough to ...
5
votes
2answers
5k views
Convert System.Drawing.Color to RGB and Hex Value
Using C# I was trying to develop the following two. The way I am doing it may have some problem and need your kind advice. In addition, I dont know whether there is any existing method to do the same.
...
5
votes
4answers
1k views
In C# , How can i create a System.Drawing.Color object using a hex value?
In C# , How can i create a System.Drawing.Color object using a value like this #FFFFF,#FGFG01 etc...
5
votes
4answers
5k views
How do I invert a colour / color? (C# .net)
I know that this won't directly invert a colour, it will just 'oppose' it. I was wondering if anyone knew a simple way (a few lines of code) to invert a colour from any given colour?
At the moment I ...
4
votes
1answer
1k views
Converting Color to ConsoleColor?
What is the best way to convert a System.Drawing.Color to a similar System.ConsoleColor?
4
votes
4answers
2k views
Using ToArgb() followed by FromArgb() does not result in the original color
This does not work
int blueInt = Color.Blue.ToArgb();
Color fred = Color.FromArgb(blueInt);
Assert.AreEqual(Color.Blue,fred);
Any suggestions?
[Edit]
I'm using NUnit and ...
3
votes
4answers
1k views
How to calculate color based on a range of values in C#?
var colors = new Color[] {
Color.Blue,
Color.Green,
Color.Yellow,
Color.Orange,
Color.Red
};
var min = 0;
var max = 400;
I'm trying to get the color in between these ...
3
votes
4answers
2k views
How to create a System.Drawing.Color from its hexadecimal RGB string?
I want to create a System.Drawing.Color from a value like #FF00FF or FF00FF without needing to write code for that. There is any .NET built-in parser for that?
3
votes
1answer
2k views
Color Interpolation Between 3 Colors in .NET
I would like to smoothly interpolate color from Color A (let's call it red) to Color C (let's call it green) going through color B (let's call it yellow), based on the value of a certain variable.
If ...
3
votes
2answers
1k views
C# Algorithm to Tint a Color a Certain Percent
I have a color and I want get a tint of that color by a certain percent. So 100% is the color itself, 90% is a slightly lighter color, etc. Basically, it's like adding 10% of opacity to the color, if ...
3
votes
3answers
2k views
Convert .Net Color Objects to HEX codes and Back
As per the question title, How could I take a hex code and convert it to a .Net Color object, and do it the other way?
I googled and keep getting the same way which doesn't work.
...
3
votes
1answer
159 views
Extension method library for actions on System.Drawing.Color
Has anyone written a nice extension method 'library' for System.Drawing.Color.
Would be nice to say :
Color.Red.AdjustBrightness(.5)
Color.Red.AdjustAlpha(.5)
Color.Red.ToHSV()
or something ...
3
votes
3answers
10k views
C# Color constant R,G,B values
Where can I find a list of all the C# Color constants and the associated R,G,B (Red, Green, Blue) values?
e.g.
Color.White == (255,255,255)
Color.Black == (0,0,0)
etc...
2
votes
4answers
129 views
Is there an online example of all the colours in System.Drawing.Color?
Can anyone point me to a reference chart that has swatches of all the colours that are represented in System.Drawing.Color?
2
votes
2answers
270 views
Why does Color.IsNamedColor not work when I create a color using Color.FromArgb()?
In my app I allow the user to build a color, and then show him the name or value of the color later on. If the user picks red (full red, not red-ish), I want to show him "red". If he picks some ...
1
vote
6answers
71 views
System.Drawing.Color equality operator doesn't treat 0xffffffff as Color.White
Why does this evaluate to false?
Color.FromArgb(255, 255, 255, 255) == Color.White
Update It's by design.
Here's a copy from the decompiled Equals function in the Color structure:
public override ...
1
vote
1answer
75 views
Generate gradient based on css gradient settings in c#
I want to generate gradient based on css settings.
Example: I have css gradient like this -moz-linear-gradient(top,#ECFFEF 19%,#788300 83%) or in -webkit-gradient version.
I want to get ...
1
vote
2answers
321 views
System.Drawing.Brush from System.Drawing.Color
I'm developing a WinForm Printing application for our company.
When the document is printed, I need to take the System.Drawing.Color property of each Control on the document and create a ...
1
vote
1answer
555 views
Databinding custom XML serializable Color class in C#
I have a class, SerializableColor, to allow me to XML serialize Colors.
public class SerializableColor
{
// omitted constructors, etc. ...
[XmlIgnore]
public Color Color
{
...
1
vote
1answer
694 views
Non-invocable member 'System.Web.UI.WebControls.Style.BackColor' cannot be used like a method
I am using c#.net.
Within my Gridview I am trying to set the SelectedRowStyle to different colours depending on which appointment the user has selected so need to change the backColor of the ...
1
vote
1answer
976 views
How to serialize Color property as ARGB values?
I'm working with Windows Forms designer. It serializes properties of type Color as known name whenever possible. I need it to serialize such properties always as RGB, because I need it later for ...
1
vote
2answers
425 views
Color picker does not give gradient appearance
i added below codes. But it generates to me 16 color. but i need 16 color between "red" and "khaki". i don't need gradient flow. My colors look like gradient flow. My colors must not closer to each ...
0
votes
1answer
35 views
C# how to generate a color without using System.Drawing
I just want to know if there's any way to create a color, given a RGB, without importing System.Drawing. I want to use this color to fill some rectangles I have creates
Thank you very much
0
votes
0answers
31 views
How to set specific color for a background with VisualStyleRenderer
In Windows 7 when mouse is moved over the button the button is drawn (or glows) with blueish color (button is in hot state).
I am using the VisualStyleRenderer of .NET to create a custom button.
I ...
0
votes
2answers
196 views
How Does System.Drawing.Color Struct Initialize Colors?
I need to create a type that contains a few methods and a long list of constants.
After a little research, I think I'd like to take the same approach taken by the System.Drawing.Color struct. ...
0
votes
2answers
310 views
converting rgb values to System.Drawing
I've looked around, but don't see this question - maybe its too easy, but I don't have it.
If I have file containing color values like:
255,
65535,
65280 ( I think this is green)
is there a way to ...