Use this tag for questions about representing or manipulating colors in a programming language.

learn more… | top users | synonyms (1)

0
votes
0answers
11 views

JQuery navigation menu

var navObject = { padLeft : '20px', padLeftHover : '40px', goRight : function(obj){ if (!obj.parent('li').hasClass('active')) { obj.stop(true, true).animate({ 'padding-left' : ...
3
votes
3answers
99 views

What's the correct math to fade a color?

I'm trying to fade a color, let's say Yellow to White over a period of time. I've got the timer worked out, and I'm applying the new color just fine as well, but the fade isn't smooth (e.g. it fades ...
0
votes
1answer
16 views

Make shades with different color in Julia set .

As in the title , i want to add 2-3 colors with shades to my Julia set . But I dont have any idea how to do it . I know how to add 1 color , and i do it . But i must to add 2-3. import ...
0
votes
0answers
7 views

Interpreting negative RGB values

I'm using the following line to get a byte array of the RGB values of my BufferedImage. byte[] pixels = ((DataBufferByte) image.getRaster().getDataBuffer()).getData(); However, a few of the values ...
0
votes
2answers
24 views

Changing color of a moving image without lowering the fps

I just added an option to my game that makes it so that all the enemies will have a random color for their clothes instead of the regular blue. I use this code to draw rectangles over the shirt of the ...
0
votes
0answers
12 views

Unable to modify adjancet tabel cell background color

I am trying to work with a table in MS word. My goal is to change the row color depending on the value entered in the corresponding textbox in the same row. I would also like to do this without ...
-1
votes
5answers
31 views

How to change color each of the characters of string in javascript? [duplicate]

I have a string "Hello World!". I want to change each color of the characters in the "Hello World!" word in JavaScript. For example, "H" is yellow, "e" is red, "l" is blue and e.t.c. How ...
0
votes
2answers
17 views

Modify color QTreeWidget

How to change the color of every text in QTreeWidget (item text, name of column)? In fact, I have a QTreeWidget inside a GroupBox and when I have modified the styleSheet of my GroupBox, this was ...
-2
votes
5answers
63 views

How can a button change textView color more than once?

I'm trying to make it so that a button changes the color of the textView to WHITE, but then on second press changes it to BLUE, and third press to RED and so on. When I try it obviously it chooses ...
0
votes
1answer
29 views

Example of how to change textView Color onTouch?

been working on a prject for a while, now I want it so that when the user touches the screen it changes the color of the textView(DigitalClock). I'm a bit of a noob when it comes to java so I really ...
0
votes
1answer
23 views

Can't convert hex color to rgb because of int representation

I'm downloading hex color from web and when I try to convert it to RGB it's not working. I'm using this function: #define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & ...
1
vote
1answer
29 views

Python: Can a 3d plot made from a list of data points have a gradient color scheme?

I have a list of points that are plotted in 3d, and I would like to have a gradient color scheme for the plot. Is this possible? If so, how can it be done? I tried some of the examples on the ...
0
votes
2answers
26 views

VBScript to color input text field

I have the below code. I have an input text field which has an example value grey colored. When clicking on the field, the text is erased and color is set to black. Then, after it finishes some ...
1
vote
1answer
21 views

How to fill a flot line graph without opacity?

How can i fill a flot line graph with no opacity? lines: { show: true, fill: true, lineWidth:1 }
2
votes
2answers
37 views

how to diaplay hexcolor onclick corresponding colobox javascrip?

i have a variable like this, var colours = [ { name: 'Yellow', hex: '#FFFF00' }, { name: 'LawnGreen', hex: '#7CFC00' }, { name: 'Aqua', hex: '#00FFFF' }, { name: 'Fuchsia', hex: ...
2
votes
0answers
37 views

How to sign and convert integers in Javascript, output to HTML canvas, and reverse process?

I'm attempting to convert images (using HTML canvas) from RGB to the YCoCg colour space, and save the output from canvas as a PNG, which can be converted back losslessly, based on code from here: ...
0
votes
0answers
9 views

Are there red x and green check AlertDialog icons?

Im using an AlertDialog like in this small tutorial: My dialogs look like this: private void AlertDialog_hardware_support_test_result_negative() { AlertDialog alertDialog; ...
0
votes
2answers
27 views

What better way to put color schemes on HTML page?

I want to add various color schemes on the same CSS file (red, yellow, etc) and would like to know how best to apply on the HTML file (one at a time). The color scheme affects various elements of the ...
0
votes
0answers
20 views

Calculating Brightness and Contrast similar to new Adobe Photoshop or Lightroom functions

I am trying to create Brightness and Contrast filters similar to new Adobe Photoshop or Lightroom Brightness and Contrast filters. I am doing RGB -> XYZ - xyY conversion and with increasing pixel ...
0
votes
1answer
38 views

How to change color of the window

I am making a networking app in java, which is a server that connects several terminals together. I wanted to give the server app a darker feel (grays and blacks), however I cannot seem to change the ...
0
votes
2answers
36 views

What attributes does bgcolor support [duplicate]

The bgcolor tag takes different words and changes the color. What actually happens? Does it take the ASCII values? <html> <head> <title> Background Color ...
0
votes
0answers
9 views

How to compute anti-aliased color?

I am drawing a line by repeating a solid circle, but how can I calculate the anti-aliased colors? I've done a search, but I am overwhelmed with the results .. Only if some one tell me how to ...
0
votes
1answer
24 views

How to display image after using setRGB(x,y,0) in Java?

for(int x=0;x<20;x++) { for(int y=0;y<20;y++) { img.setRGB(x, y,0); } } I'm trying to convert all pixels in a 20*20 region to black colour. But this is not working with the ...
1
vote
1answer
35 views

Getting the colour that belongs to the given integer

I already learnt the working mechanis of RGBA, so I realised that hexadecimal numbers that belongs to the different colours can be turned into simple integers. It means that I can store colours in ...
0
votes
1answer
28 views

getting a color from a database entry and applying it to a label background

I am having trouble getting the color the user picks and saving it into a database so that when they reload the program it will automatically apply to the labels background. I have this to let the ...
1
vote
2answers
43 views

How to change input border-color, with jQuery, depending on its value?

I have question about jQuery. I have code below which works fine; it changes input border-color depending on its value, which is typed and entered. But if in input's value on page-load it does not ...
1
vote
2answers
45 views

Javascript change color of text and background to input value

I'm going to use javascript to make a function for changing color of background, as well as text simultaneously - based on the value of a text input. I've got the background color to change, but can't ...
2
votes
2answers
61 views

Java JTabbedPane Inset Color

I was wondering how you would get the color of the inset of a JTabbedPane. I cannot seem to get this color. Every attempt I make I get 236,236,236 which is the outside frame color, where the inside ...
0
votes
0answers
14 views

setRGB(x,y,0) not working

for(int x=0;x<200;x++){ for(int y=0;y<200;y++){ img.setRGB(x, y, 000000); } } This code is not working.I want to set the 200*200 ...
2
votes
1answer
48 views

Write image as 32 bit per channel (128 bit per pixel) bitmap from .net

I generate HDR images at runtime which I need to save in perfect quality (I'm chaining those images through multiple filters so I want to keep maximum fidelity each time to avoid too much quality ...
1
vote
3answers
40 views

How to color plot in R

I have a two dimensional plot. Every point on it has some value (say, y) ranging from 0 to 1. I want to show these values on a plot using colors. For example, if any point has a value less than 0.25 ...
-2
votes
2answers
60 views

Can't set the correct value in this while loop

I have translated this code to VB.NET which is a function to check if a image is grayscale. private static unsafe bool IsGrayScale(Image image) { using (var bmp = new Bitmap(image.Width, ...
-2
votes
0answers
35 views

Transparencykey and displayed images issue

I made a transparent WinForm to launch a image for a certain amount of time (A SplashScreen) which is displayed in a picturebox control. The problem is the transparency of the form, the displayed ...
3
votes
1answer
42 views

If Image contains specific color then

Exists a easy way to check if a image contains certain rgb color? For example: Dim img As Image = Image.FromFile("C:\image.png") If img.contains color.red(.toRGB) then... I think the hard way to ...
1
vote
1answer
43 views

Compare two colors in an image + Which is best to draw 3D points

I know that it possible using the GetPixel() but is it possible to let the sw to decide which one is lighter or darker than the other. I'm going to use a depthMap Image & I want to ...
1
vote
1answer
39 views

Get color property while ColorDialog still open, before confirming the dialog?

What I want to do is while a ColorDialog is opened, get the temporal selected color in the "full open" mode of the Colordialog. For example in this image I have a white colored picturebox and a ...
0
votes
1answer
16 views

Debugging colors in cascading stylesheets

Is there any tool available wherein I may open a CSS file and see a color box next to each color and background-color rules?
0
votes
1answer
13 views

Read Pixel Color of georeferenced image and get LatLng

I have a colored georeferenced satelliteimage and would like to find out what color has which pixel at which position. All I have is the georeferenced image and average programming skills in php and ...
0
votes
1answer
23 views

change R,G,B of image using jquery?

I want to change R,G,B color of Image using jquery. I am converting image to canvas but it's not working Please fix my error or what am I missing. This time I am just changing Red color if this works ...
4
votes
1answer
80 views

R, knitr, xtable, alternating row colors

I'm trying to produce a table with xtable in R using knitr with alternating row colors. I can print a table in the PDF output but can't quite figure out the add.to.row command in the xtable manual ...
0
votes
0answers
6 views

how to apply color to a specific font in the text in Libre Office?

I have written a report in Libre Office mainly with Arial font and now it is almost done. I have decided to change the color of some programming code which are in courier new font. I now want to apply ...
0
votes
0answers
27 views

How can i style an android context menu?

Right now, my context menu has the white default color. I'm able to change the title with .setHeaderTitle in the onCreateContextMenu event. I'm trying to change the background color to #2b2b2b, but i ...
-1
votes
1answer
36 views

JComponent change bar color

I have a problem with my Component in Java. When i set OVF flag to true, Rect should be in Color red (255,0,0), and if i set OVF flag to false, Rect should be in color blue (0,0,255). The problem is ...
1
vote
4answers
77 views

Convert RGB Value to UIColor?

Given a huge list of RGB values, I would like to associate and pair them to a standard UIColor. For example, (255,0,0) is the "common" Red color. I would like to pair and label values like (254,85,44) ...
0
votes
1answer
24 views

masm assembly change the color of any thing on screen by using code

I am making a color picker and I want to display the color they have selected. I cant figure out how to change the color of anything. I have tried yo change textbox color or the background color of ...
0
votes
1answer
23 views

Making A Gradient Between 2 Colors in XNA

I am making a GUI library for Monogame/XNA, and I decided that instead of using textures for the buttons, I would use a struct to hold information on gradients and colors in the gradient. Then I could ...
0
votes
1answer
49 views

Get all screen pixels colors with C# [duplicate]

I am building a project to get the color of certain screen pixels. The project already works however I would like to know if there's a better and faster way to do it. here's a part of the code I'm ...
1
vote
0answers
30 views

dotplot with R, editing colors, handling with duplicate values

I created a dotplot with R with the following source code: dotplot(mass_movement ~ quantity, data=mm_strat, groups=stratigraphy, cex=1.5, pch=19) The data looks like this: quantity | mass_movement ...
0
votes
1answer
27 views

Output of PHP-CLI script in Bash are not colorized

I have a following code in script.php: <?php echo "\e[0;36m Be happy ;)\e[0m"; ?> It is run like this: ~$ php script.php On my linux mint desktop the output is colorized but on the remote ...
0
votes
1answer
34 views

how to have color image bases on the pixels value in MATLAB?

I have developed a code in which I convert a point text file to a grid raster. The result is an image but in BW but I want to visualize this image in color. The color classification is based on the ...

1 2 3 4 5 111