Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
381 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 ...
7
votes
5answers
681 views

How can I interrogate the Delphi component palette?

I have lots of components installed - trouble is when I want to find one I rarely use it takes ages to find it. I can look at the ALL choice which lists all components but finding one with say 'grid' ...
6
votes
4answers
2k 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 ...
5
votes
1answer
654 views

PIL: Convert RGB image to a specific 8-bit palette?

Using the Python Imaging Library, I can call img.convert("P", palette=Image.ADAPTIVE) or img.convert("P", palette=Image.WEB) but is there a way to convert to an arbitrary palette? p = [] for i ...
4
votes
3answers
3k 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 ...
4
votes
4answers
2k views

“Exclusive” DirectDraw palette isn't actually exclusive

We're maintaining an old video game that uses a full-screen 256-color graphics mode with DirectDraw. The problem is, some applications running in the background sometimes try to change the system ...
4
votes
3answers
549 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 ...
3
votes
0answers
104 views

How to convert 256 colors palettized RGBA image data to NSImage

I'm a newbie developer and I need your help with something that is probably trivial for you. I have an image data in this pixel format: 256 colors palettized RGBA. It comes from FFmpeg (PIX_FMT_PAL8) ...
3
votes
3answers
1k 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 ...
3
votes
6answers
296 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 ...
2
votes
1answer
178 views

Getting a Mathematica Menu Bar on Linux

The Linux front end of Mathematica (8.0.1.0) does not seem to have a Menu Bar which is apart from any given notebook. In any Windows front end I have used, there is a standalone Menu Bar which ...
2
votes
2answers
857 views

How to filter a specific color from a bitmapData object (or byte-array)

I'm looking for an efficient way to filter a specific color from a bitmapData object in ActionScript 3. Currently I use a loop with readByte32(). This takes about a second to process which is ...
2
votes
4answers
473 views

How can I access the palette of a TPicture.Graphic?

I have searched the web for hours but I can not find anything about how to get the palette from a TPicture.Graphic. I also need to get the color values so I can pass these values to a TStringList for ...
1
vote
1answer
425 views

Silverlight 4.0: Chart Toolkit - Palette's are not working

I am trying to customized my tooltip - PieDataPoint, however, palette's are not working anymore. Is there anything that I've missed out? It seems that when I add the below to PieDataPoint, the chart ...
1
vote
2answers
147 views

Wicket Palette - add values to left list

I have a question about Palette in Wicket, i would add values (on page loading) in the right list but i didn't find a solution. I can only add values to left list using the Model. So please help me. ...
1
vote
1answer
84 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 ...
1
vote
1answer
89 views

Transparency is considered as black in windows and in program

I'm using the PIL python library to do some batch copy-pasting from image to image. I had it working yesterday, but suddenly when I restarted my computer, the program considers transparency as black, ...
1
vote
1answer
348 views

Adding Richfaces to Eclipse Palette?

I am using Eclipse 3.6, and want to add Richfaces to Palette.Could anyone give source or explain how to do please?
1
vote
1answer
432 views

Breaking up Java Swing classes in Netbeans palette

I would like to know the best method of breaking up large Java Swing classes. Some of mine are quite large and I would like to begin the process of properly modularizing my code. I saw that I could ...
1
vote
2answers
206 views

How to use palette window decorators in Java/Swing?

is there an open solution to use palette window decorators in Java/Swing like in the following screenshot? JNIWrapper can do this but it is neither open nor free.
1
vote
2answers
221 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) ...
1
vote
1answer
231 views

eclipse rcp palette creation

Does any one know how to create a palette like Visual Editor widget palette? I think that it should be e component but I don't know where to find it and how to use.
0
votes
3answers
28 views

Is there a library for c++ (or a tool) to reduce colors in a PNG image with alpha values?

I have a PNG-Image with alpha values and need to reduce the amount of colors. I need to have no more than 256 colors for all the colors in the image and so far everything I tried (from paint shop to ...
0
votes
0answers
64 views

How to change an WriteableBitmap's indexed palette at runtime?

We have succesfully used WPF's WriteableBitmap class for an application where we update in real-time the output of a 2D image processing algorithm. Currently the WriteableBitmap has a 480x480 size; ...
0
votes
1answer
78 views

Allegro 4.2.4 in palette mode on Windows7 corruption

I have problem with Allegro 4.2.4 running palette mode (256 colors) in Windows 7. I found over Internet solution of killing explorer and it's working indeed, however it would be ridiculous to expect ...
0
votes
0answers
50 views

Creating Custom Palette and Exporting it into a plugin in Eclipse

I want to create a palette for my component tag library. Can you help me about this. I need some tutorials for the subjects below: 1. How to create custom palette? 2. How to export this palette into ...
0
votes
1answer
80 views

How to generate NES palette in C# code

How can I generate the NES palette entirely in C# code, without using any constant values? I want to precalculate the palette in the same way that the PPU does. Thanks!
0
votes
1answer
124 views

(Python) Set a specific palette in an image using PIL or PyPNG

I have a bunch of images that I am working on separately, that fit back together after being worked on. I'd like to compress them to a 8 bit image in order to save size. I'm currently doing this with ...
0
votes
1answer
240 views

c# - Bitmap Palette throws index out of bounds exception when the index is not out of bounds

I know you must here the IndexOutOfBoundsException loads, and I wouldn't normally post stuff about it, but I have just come across it whilst trying to parse an array as a palette using the following ...
0
votes
1answer
406 views

Can't set palette in bitmap

I have been writing a PCX decoder and, so far, the PCX image itself parses fine, but I can't work out how to set the palette of a bitmap. I have created a bitmap like so: Bitmap bmp = new ...
0
votes
0answers
183 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
0answers
93 views

is it possible to set paletted (<=8bpp) format for compressed avi stream?

I need to write AVI file from a series of images. These images can have different color depth (all the same for particular avi file). I cannot set compressed stream format for <= 8bpp color depth ...
0
votes
1answer
347 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
163 views

Disable double click in palette of Eclipse RCP project

I have an Eclipse RCP application with a canvas and a palette full of items. The user can click on any item in the palette to select it and then drop it anywhere on the canvas. If the user double ...
0
votes
2answers
97 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.
0
votes
1answer
291 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 ...
0
votes
2answers
241 views

DrawImage from one indexed Bitmap onto another C# .NET Framework 2.0

I have two indexed (8-bits) Bitamp, both using the same Palette in C# (.NET Framework 2.0). I want to bit block copy pixels from one onto another on designated coordinates. I had tried to use Graphics ...
0
votes
1answer
631 views

JTattoo look and feel Java - What's happening exactly?

I downloaded JTattoo.jar for the look and feel of my application. However I am confused, is the look-and-feel concept a run-time issue (I will only see the JTattoo look and feel when I run the ...
0
votes
1answer
212 views

How I can create a addition Tree Editor with GEF?

I have a graphical editor with GEF. It's possible to add objects from a palette. An Example what I mean is this: ...
0
votes
2answers
417 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.
0
votes
1answer
689 views

How to use Imagick php to generate a bmp file with a palette offset

I'm trying to use Imagick via php to generate a 8bit bmp from jpg. But i would like the pixel colors to start at index 16 rather than 0. The code below shows how to generate the bmp in the correct ...
0
votes
2answers
530 views

QT set window background

I have scoured through the documentation looking for a way to change the main window's background to an image I have located in the project file. I tried to use a palette with no luck. My question is, ...
0
votes
1answer
1k views

Where do I find the Eclipse JavaServer Faces config editor palette?

While running through the cheat sheet "create a navigation rule" for the Eclipse JavaServer Faces tooling it says "select the page control from the palette and ...". But where's this "palette"?