colors

Convert from HEX color to RGB struct in C

Convert from color HEX code to RGB in pure c using C library only (without C++,templates, etc.) RGB struct may be like this -> typedef struct RGB{ double r; double g; double b; } RGB1; function should return RGB1 ...

How can I convert strings to an html color code hash?

I'd like to represent strings as arbitrary html colors. Example: "blah blah" = #FFCC00 "foo foo 2" = #565656 It doesn't matter what the actual color code is, so long as it's a valid hexadecimal HTML color code and the whole spectrum is fairly well represented. I guess the first step would be to do an MD5 on the string and then someho...

PHP GD palette colors

In PHP GD how can you convert a truecolor image to a palette without losing any colors. With imagetruecolortopallete it doesn't work. I have a function that runs through all the colors and filters them (eg. grayscale). and It doesn't retain all colors, such as this picture of a Lamborghini- Picture This is my code $im = imagecreat...

How do you get the hue of a #xxxxxx colour?

How do you extract the hue component of a color given as '#rrggbb'? ...

Android Blend Modes

I am looking for a way to add more advanced blend modes to my program (ones that I could define myself). How would you suggest going about this with Android? Setting pixels individually is too slow to be a viable solution. ...

CSS Beginner Question – the header didnt adopt the assigned color

Hi Guys, I hope you can help my with a exercise I have been stacking. I am wondering why the header is not appears in blue - as I actually have assigned: Please not the header area. I have assigned color "blue". BUt I have tried any color as well. The header keeps white This is the CSS Code. (HTML is ok according to Dreamwaver) Thanks ...

Android 2.1 CheckBox component : change check color

Hello, I'm developing a application for Android v2.1 and i seach how i can change the color of the "check" for a CheckBox component ? Thanks you in advance :smile5: Dominique ...

Difference between defining a value in color and drawable tag ?

<resources> <drawable name="red">#7f00</drawable> .... <color name="solid_red">#f00</color> ..... </resources> This is some part of the colors.xml from android samples directory. Now my question is that, what is the difference between defining a color in <drawable> tag and <color> tag ? ...

color road color google map kml

Hi , I have uploaded kml on maps using javascript. I want to change color of road. I dont want to draw ployline between two points. I want to change color of road. Is that possible ? How? Thanks ...

How to extract r, g, b, a values from CSS color ?

What would be the easiest way to transform $('#my_element').css('backgroundColor') to object like this: { r: red_value, g: green_value, b: blue_value, a: alpha_value } ? ...

Python: PIL replace a single RGBA color

I have already taken a look at this question: SO question and seem to have implemented a very similar technique for replacing a single color including the alpha values: c = Image.open(f) c = c.convert("RGBA") w, h = c.size cnt = 0 for px in c.getdata(): c.putpixel((int(cnt % w), int(cnt / w)), (255, 0, 0, px[3])) ...

Visual Studio Tab change color?

http://s12.radikal.ru/i185/1009/82/8f01e59f40b1.png Can I change back/fore color of tabs? ...

XNA glColor equivalent

I come from the land of OpenGL, so I'm similar with glColor functions, and how they work with the textures that get outputed using the default GL blending methods. I can't seem to get GraphicsDevice.BlendFactor to work as glColor does, but I may not be using the right blending settings. Without using shaders is it possible to get the e...

Is it acceptable to use RGB colors when designing HTML emails

It is best practice to stick with HEX colors when designing HTML emails - does it matter? ...

How to change StatusBar font color in wxWidgets?

I want to display an error message in red on status bar if a user action results in error. I have tried setting the forground color to red but the it still displays the message in default black font. How do make the font color red on statusbar? I'm using wxWidgets 2.8 on red hat 5.5 Thanks! ...

Is it possible to recolor an image using JavaScript?

Hi everyone, I was wondering if anyone knew of a way to recolor an image using JavaScript. Any type of access to an image's pixels would work, I suppose, as long I could read/write color values. It should work in Firefox; if it doesn't work in IE, no big deal, but it would be a benefit if it did. Thank you for your help! ...

how to implement color search with sphinx?

hello, searching a photo by dominant colors using mysql is quite simple. assuming that the r,g,b values of the most dominant colors of the photo is already stored in the database, this could be achieved for example by something like: SELECT * FROM colors WHERE ABS(dominant_r - :r) < :threshold AND ABS(dominant_g - :g) < :thresh...

How do I convert a hexidecimal color (with alpha) to an int in Jython?

Hi, I need to convert an ARGB hex into an int in Jython for color. I've tried using longs, hex() and a combination of other things and can't seem to get it to work. I get this error "TypeError : 5th arg can't be coerced to int" when I try to convert 0x80ff3333 to an int. I guess there are too many bytes in the hex to convert it. Anyon...

How do I generate this specific sequence of numbers?

Apparently there is no predefined list available in .net. I'd like to use a number of standard colors, e.g. something like red, green, blue, yellow, ... i.e. the typical colors consisting of 00 and FF components, followed by those with additional 7F components, ... Is there a way to retrieve these "standard" colors or do I have to writ...

Cucumber: pipe output without losing color

I'm using cucumber to run some tests. It colorizes its output using ANSI escapes. This is great, but currently its producing more output than I care about, and shoving things I do care about off the screen. There doesn't seem to be a way to eliminate the other lines from within cucumber, but I can pipe the output through grep to pare ...