Is there a library I can use that will allow me to quantize images on an iPhone?
I want to quantize the images down to maybe 8 colors and record either hex or rgb values for each color remaining after the quantization.
|
Is there a library I can use that will allow me to quantize images on an iPhone? I want to quantize the images down to maybe 8 colors and record either hex or rgb values for each color remaining after the quantization. |
||||
|
|
|
Shouldn't be too hard to do this yourself. Get to the pixel data and then just iterate through and quantize. Here's how to get the pixel data: (This code is from Erica Sadun's Cookbook samples, I believe)
RequestImagePixelData will return an array where each pixel is described as 8 bits of alpha, 8 bits of red, 8 bits of green and 8 bits of blue. |
|||
|
|
You can use ImageMagick for this task: https://github.com/marforic/imagemagick_lib_iphone MagickQuantizeImage and related function will help you. |
|||
|
|