The color-palette tag has no wiki summary.
0
votes
1answer
51 views
Parameter is not valid exception showing on Bitmap creating when passing memory stream, only happening on 64-bit server
Well earlier it seemed like a similar issue asked in several forums, but in the end no solution given seems to work.
I am getting a Base64 string, which is converted to byte array. Then I am creating ...
0
votes
1answer
18 views
Adding ColorPickerPreference Library when it's not a preference
I'm trying to add a ColorPicker to my app. I see a lot a of ColorPickers (the one frome the API'S Samples, the one from Cyanogen, the AmbilWarna library, the HoloColorPicker, and the ...
1
vote
2answers
55 views
Create a false color palette and associate pixel values with it
I have raw pixel data (640x480 pixels) from an infrared camera which stand for a specific measured temperature. These pixel values have a 16 bit range from 0 to 65535.
I can display the pixel values ...
5
votes
1answer
89 views
sequence over colors in R
Is there a way to create a sequence over colors in R?
for example, anything like:
seq("#000000", "#999999", length=20)
-1
votes
1answer
85 views
how do I substitute one colour for another, in every object, of an eps file? [closed]
I have a vector image that I need to edit and I have inkscape.
What I want to do is to substitute one set of coulours of the palette by another. For example, my image has a palette with several tones ...
-2
votes
1answer
77 views
0
votes
1answer
50 views
imagecolorset doesn't work with alpha value
The manual here states that the PNG function imagecolorset() accepts a red, green, blue and alpha value, however when I specify an alpha value PHP gives me the error:
Warning: imagecolorset() ...
3
votes
3answers
493 views
MS Chart for .NET predefined palettes color list?
Microsoft Chart for .NET (3.5, 4.x) has predefined palettes e.g. Berry, Bright, SeaGreen etc.
Is there anywhere a list of colors for each palette (hex or named)?
Thanks!
0
votes
1answer
139 views
Why does converting a bitmap to 8bpp result in 224 entries instead of 256?
I am trying to convert an existing bitmap to a palette which has 256 colours.
After researching on the web, people suggest:
Bitmap b1 = new Bitmap(picture);
Bitmap b2 = new Bitmap(b1.Size.Width,
...
-1
votes
1answer
55 views
How can I change similar colors at once? [closed]
I have a bitmap like this
I now need the same button but a red one. Can I apply some tool in the Gimp so all the colors get converted to 'corresponding' shadows of red?
3
votes
1answer
241 views
How can one mix 2 or more color palettes to show a combined color value
I'm trying to create a plot where color represents the combination of several values. In the example below, I am applying increasing values for red associated with the x-coordinate and increasing ...
2
votes
1answer
340 views
Incorrect saturation calculation in RGB to HSL function
Does anybody know the correct formula to get the saturation level from an RGB color?
I already have a function that does it. I've tried loads of them posted on the internet but only this one seemed ...
1
vote
2answers
585 views
Convert 24-bit image RGB to 3-bit 8-color
I am able with an BufferedImage to obtain the RGB values for every pixel of a 640x640 image, the output looks like this:
[...]
Pixel :(640, 634) RGB: 166 94 82
Pixel :(640, 635) RGB: 166 94 80
Pixel ...
0
votes
1answer
180 views
Extending palette of indexed images in MATLAB
I extracted the color palette of an indexed image - a 256x3 matrix, duplicated the palette to 512x3 matrix with duplicate values in each half. What I want to do is steganography. When the secret ...
1
vote
2answers
525 views
Access the color palette of an indexed image in C
Suppose I want to read an indexed image as it is( not the 3 channel 24 bit images)
I wish to read and modify the color palette of an indexed image. In opencv I haven't come across any such functions ...
3
votes
1answer
1k views
xCode 4.3 how to programmatically access interface builder palette colors?
I'm building the interface within interface builder and see that there's a variety of color palettes available for selecting font and background colors:
background color>other>color widget 3rd ...
0
votes
2answers
144 views
Cropping an 8-bit bitmap by its palette information
I'm currently using C++ to read my 8-bit bitmap and save off its pixel data and colour table. I currently have my colour table stored in an array:
RGBQUAD* colours;
I was wondering how I would go ...
3
votes
1answer
667 views
Applying a Median Cut color reduction algorithm's output palette to the source image
So I'm beginning to look into "simple" color reduction to apply to images. I've spent the last day researching how this works, and managed to find what seems to be a decent algorithm to experiment ...
1
vote
1answer
181 views
CMFCColorButton::SetPalette
Recently I began to use CMFCColorButtons in my application replacing old custom controls. Now I want to restrict the colors that are selectable.
Therefore, I found the method "SetPalette". I create a ...
5
votes
1answer
720 views
libGDX: treat first color in palette as transparent color
old game engines designate the first color of an image's palette as a transparent color.
is there a way to do the same with libGDX?
i tried loading the picture and replacing the palete's first color ...
0
votes
1answer
76 views
wsdisplay color map not being retrieved correctly
I've been trying to use wscons and wsdisplay on NetBSD 5.1.2 (using the VESA framebuffer implementation) recently and I've encountered a bit of a problem:
I can set color maps successfully and they ...
0
votes
1answer
416 views
gnuplot: set palette labels with smallest numbers on top
I am making palette in gnuplot using commands:
set pm3d implicit at b
set palette model RGB maxcolors 5
set cbrange [0:20]
set palette model RGB defined (4 '#006400', 8 '#00008B', 12 'blue', 16 ...
0
votes
1answer
369 views
How to programmatically arrange a set of 256 RGB colors in 2D so that there all adjacent colours have a smooth transition
I have a set of 256 colors (all available colors in an xterm-256color terminal) and I am using a script called 256colors2.pl that I see mentioned in nearly every Internet article that talks about 256 ...
3
votes
1answer
120 views
Algorithm to Color Nodes Hierarchically
I have a network where the nodes are defined hierarchically (via UN SITC coding). In my application, each node has four identifying digits of increasing hierachical specificity (for example, see ...
9
votes
2answers
386 views
Sort Colors (Objective-C)
I'm doing this sort of thing:
- (NSArray*)colors {
float divisor = .3333;
NSMutableArray *retVal = [NSMutableArray array];
for (float one=0; one <= 1.0f; one += divisor) {
for ...
0
votes
1answer
56 views
ColorPickerExtender accessible (keyboard only)
I am using the ColorPickerExtender from the Ajax Toolkit. Just wondering if anyone has had any luck getting this control to be keyboard accessible. I can get focus on the textbox which brings up the ...
1
vote
1answer
410 views
finding the closest web safe color if I have a palette
How do I take r,g,b values and compare them to a websafe color palette to find the best match for the r,g,b value?
There's this one:
What is the best argorithm for finding the closest color in an ...
1
vote
0answers
134 views
How to remap graphics card color palette to negative colors
I want to set my windows color scheme to negative colors. I tried to use Magnify tool which can be used to make negative colors scheme. But this program generates some lag. It is especially visible ...
3
votes
3answers
408 views
Best quality dithering library in C
I'm developing a texture atlas packer to use with OpenGL, and I'm currently looking for an open-source (it's better if it's a library, but an open-source software would be good as well!) solution that ...
0
votes
1answer
37 views
Constructing an IndexColourModel
I was wondering about constructing an IndexColourModel. I don't understand the 'bits' parameter argument. Is this what is used to index into a colour map, i.e. the number of least-significant-bits to ...
2
votes
2answers
903 views
Is there a premade color palette in WPF
I am currently creating a basic text editor that has basic functions such as changing fonts and sizes.
I am currently trying to add color changing capibilities and I was wondering if there was any ...
3
votes
2answers
728 views
PNG - Is it possible to reduce the palette using Java 2D?
If I have a PNG image opened as a BufferedImage, is it possible to reduce the palette in the PNG image so that there is less colour (less bits per pixel / colour depth)?
For example, if you look at ...
0
votes
1answer
136 views
How to determine color transformations from given colors?
Our designer has provided us with some nice web 2.0 buttons, etc. I translated them into beautiful CSS3. Now I want to go overboard and generalize the color scheme using Sass color manipulation.
...
3
votes
2answers
698 views
Are there standard 8-bit color palettes?
I'm attempting to reverse engineer a file format from a logging program. It seems to use a 1-2 byte field which may be used for label colors, as it seems to be the only thing that's unexplained. ...
3
votes
4answers
852 views
How to make a color progression out of a color palette
My goal with this algorithm I'm working on is to output a color progression out of some provided colors. By color progression I mean creating the "fade" effect between two colors (color A, color B) ...
12
votes
4answers
2k views
How can I generate a palette of prominent colors from an image?
I'm trying to figure out how to sample all of the pixels in an image and generate a palette of colors from it, something like this or this. I have no idea where to even begin. Can anyone point me in ...
1
vote
2answers
4k views
Accessing javascript functions defined in different files
I am having two seemingly related problems accessing javascript function defined in different places. The first problem I am having is calling function I have defined from the console of firgbug or ...
6
votes
2answers
1k views
How can I get a list of visually distinct colors?
I need to assign colours to distinguish between different items. Simple case: order rows of different color according to customer.
I don't want to have the user choose a colour for every customer, I ...
2
votes
2answers
708 views
Converting truecolor RGB image to indexed colors
I want to convert a 24bit RGB image (8 bit for each channel) 8 bit using an indexed color palette.
My initial idea was to create an array and simply count the amount of times each color was ...
7
votes
4answers
2k views
How do I make a lighter version of a colour using PHP?
Hello fellow earthlings. A quesion about RGB color and its usefulness in a simple tiny php code:
Imagine I have variable $colorA containning a valid six char color. say B1B100, a greenish natural ...
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.
1
vote
2answers
758 views
OpenGL Color Index for iPhone's OpenGL ES 1.1?
Is it possible to use color pallettes in openGL ES 1.1?
I'm currently developing a game which has player sprites, and the player sprites need to be able to be changed to different teams' colors. For ...
1
vote
2answers
115 views
how can i auto-generate sets of 3 colors (border, fill & text) that go together
I am trying to automatically generate a bunch of images all
containing a border, a fill and a text label within.
I am using a script to generate a svg file that I subsequently rasterize using batik
...
1
vote
0answers
97 views
analysing binary image data to determine format
I have some binary data representing an image to be used as a texture on an OpenGL based system.
I'm trying to determine the actual format of this image... eg: RGBA, RGB5_A1, RGB8...
From a brute ...
0
votes
1answer
490 views
How can I extract the palette from a 5-6-5 bitmap image?
I am trying to extract the palette from a 5-6-5 (16bit) bitmap image that I have produced using ImageConverter Plus from an original Photoshop file. I need to read out the palette and compare it to ...
2
votes
2answers
505 views
Colorization and Palette Best-Fit Algorithms
Been poking around google and haven't found any like what I'm after. so what is it I'm after? well two things:
firstly I'm looking for an
algorithm/pseudo-code/white-papers
to determine a best-fit ...
0
votes
3answers
804 views
What's the best way to analyse the colours in an image (Java)?
I don't have much experience doing image analysis so I thought I'd ask more enlightened individuals :)
Basically what I want to do is analyse an image and work out what the most common colours are ...
1
vote
2answers
911 views
drawing rainbow palettes
I have a 8-bit color palette, therefore I am having 256 colors.
The palette is basically an array of [256 * 3] {r, g, b} values, Now I need to draw a color spectrum out of it. So basically I have to ...
1
vote
2answers
415 views
Generation of 8 bit palette from png file via Python
What would be the best python based library for generating 8-bit palette from the given .png file.
As in photoshop generating under .pal format.
PS: Input PNG is already in 8 bit format. (paletted)
...
0
votes
3answers
39 views
Is there a tool out there that lets you print a colour chart / palette of colours used on a web page?
I want to print a table of the colours used in a web page that my graphic designer has produced - I have .png files at present and use Fireworks to view them. It would be great if there was a tool ...