tags:

views:

114

answers:

2

Hi,

I want to pixelate image and divide image into parts that pixelated then I would like to take the approximate color of that divided part.

Imagine that fans are holding cartons and whole image is giving a shape and color of something ?

as in googled image : http://www.fenerbahcemaclari.com/images/tribun_resim.jpg

A: 

Scale the image down to the number of pixels needed, then you can enlarge again. You can use the standard functionality of System.Drawing.Bitmap.

GvS
A: 

Pixelate image: http://ericwillis.com/notes/2009/11/pixelate-an-image-with-csharp/

Tuukka
what about getting the main color of each pixels ?
sml
http://stackoverflow.com/questions/1068373/how-to-calculate-the-average-rgb-color-values-of-a-bitmap
Tuukka