Image to Color By Number
Design or upload a photo and have it broken down into a color by number sheet.


The below Script does the following:
- Image Loading: It loads an image (named "santa.png") using the PIL (Python Imaging Library) module.
- Image Resizing: The image is resized to a smaller size (40x40 pixels) for simplicity. This step is optional but helps in managing complexity.
- Image Conversion and Flattening: The image is converted to a NumPy array and then flattened to a 2D array. This process discards the alpha channel if present.
- Color Reduction using K-Means Clustering: The script applies K-means clustering (from sklearn.cluster) on the color data to reduce the number of colors to six distinct colors.
- Creation of a Numbered Image Array: Each pixel in the image is assigned a number corresponding to its cluster label from the K-means algorithm.
- Color Map Creation: A color map is created that maps each cluster number to its respective color.
- PDF Generation: The script then generates a PDF document using ReportLab. It creates a table where each cell corresponds to a pixel in the numbered image array. The table is styled with grid lines and centered text.
- Color Map Saving: The color map is saved to a text file named "color_map.txt", listing each number and its corresponding color.