Tagged Questions
1
vote
1answer
19 views
CKEditor: Different color palettes for Text Color and Background Color possible?
I am using CKEditor (v3.6.4) and try to find out how to change the palettes for Text Color and Background Color separately.
I found config.colorButton_colors in the docs which allows me to define ...
0
votes
1answer
60 views
How do I modify this gray-scale palette into a color palette?
I am acquiring images using a digital camera. At first, I was using a mono camera, but recently I upgraded to a color camera. With the mono camera I was having some palette issues until I found this ...
2
votes
0answers
134 views
Finishing an algorithm to generate a color dominance histogram from a picture (in JavaScript)
I need to find out what are the N dominant colors of an image.
I've written a function inspired from this : http://bubble.ro/How_to_create_the_histogram_of_an_image_using_PHP.html
The picture is ...
0
votes
0answers
157 views
How to Generate a HSB color palette with brightness variation
I've generated a basic and generic HSB color palette with Java
The gradient has Saturation and Brightness fixed to 100%. Only the Hue varies over 300 degree.
new Color(Color.HSBtoRGB((float)value, ...
1
vote
0answers
74 views
How to export a image to act file
I'm trying to create a mini tool for my job. I'm using C# with Visual Studio 2010 to do that. Now I need to export an image to an act file.
Following here, ...
0
votes
1answer
254 views
Quartz 2D draw PDF page with different color
I have a bunch of PDFs that I'm using as vector art in an app I'm writing. I'm using the CG Context command CGContextDrawPDFPage to draw the PDFs, and it's working great so far. A problem I've run ...
1
vote
2answers
188 views
How can I use different color palettes for different layers in ggplot2?
Is it possible to plot two sets of data on the same plot, but use different color palettes for each set?
testdf <- data.frame( x = rnorm(100),
y1 = rnorm(100, mean = 0, sd = 1), ...
1
vote
1answer
504 views
Programatically step through 24 bit color spectrum, get x amount of average colors
Yes, I AM trying to re-invent the wheel. :-) . I am doing my own image compression, (testing some ideas for transmitting parts of images over tcp). Anyway... I am trying to step through 24 bit rgb ...
11
votes
1answer
2k views
Algorithm or library for color quantization/reduced image color palette in Javascript?
I'm writing a web app that takes a user-submitted image, gets the pixel data via a canvas element, does some processing, and then renders the image using vector shapes (using Protovis). It's working ...
1
vote
0answers
280 views
Some Qt designer palette colors won't apply on windows 7
As the title says, I am trying to change colors in the palette of my various panels on windows 7 and the effected areas won't change from the default color. They work just fine on my windows xp ...
0
votes
1answer
617 views
Making a menu (color palette) from looping through colors
I have the following code:
foreach (Color color in new ColorConverter().GetStandardValues())
{
output.Write(color.ToString());
}
What would be the syntax to ...
0
votes
2answers
286 views
Methods for creating a color palette from an image?
Say I have an image, of unspecified color depth and dimensions.
What ways are there of compressing this down to an n-color palette?
My google-fu is weak with this one.
5
votes
3answers
3k views
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 ...
4
votes
6answers
720 views
Is there any way to divide rgb color palette?
I'm trying to generate a color palette which has 16 colors.
i will display this palette in 4x4 grid.
so i have to find a way to rgb color palette which has
255*255*255 colors divided to 16 colors ...
0
votes
1answer
658 views
iPhone context: How do i extract palette information from an image?
Hi everybody: i want to take a picture and retrieve the main color analyzing its palette (i think this should be the easiest way), but i don't know really where to start.
14
votes
3answers
7k views
JS function to calculate complementary colour?
Does anybody know, off the top of your heads, a Javascript solution for calculating the complementary colour of a hex value?
There is a number of colour picking suites and palette generators on the ...
6
votes
3answers
3k views
How to reduce color palette with PIL
I'm not sure how I would go about reducing the color palette of a PIL Image. I would like to reduce an image's palette to the 5 prominent colors found in that image. My overall goal is to do some ...
4
votes
3answers
813 views
How is the organization of the 12 Bit RGB color format?
I know that the 12 bit RGB color pallette format , has 4 bit for each color R,G,B.
But how is the structure of the raw data i.e.
1.) Does each color have a byte corresponding to it which in turn has ...
