Contents¶
img2cmap¶
Usage¶
Create colormaps from images in three lines of code!
ImageConverter
class converts images to arrays of RGB values.generate_cmap
creates a matplotlib ListedColormap.from img2cmap import ImageConverter
# Can be a local file or URL
converter = ImageConverter("tests/images/south_beach_sunset.jpg")
cmap = converter.generate_cmap(n_colors=5, palette_name="south_beach_sunset", random_state=42)
Now, use the colormap in your plots!
import matplotlib.pyplot as plt
colors = cmap.colors
with plt.style.context("dark_background"):
for i, color in enumerate(colors):
plt.plot(range(10), [_+i+1 for _ in range(10)], color=color, linewidth=4)

Plot the image and a colorbar side by side.
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import make_axes_locatable
fig, ax = plt.subplots(figsize=(7, 5))
ax.axis("off")
img = plt.imread("tests/images/south_beach_sunset.jpg")
im = ax.imshow(img, cmap=cmap)
divider = make_axes_locatable(ax)
cax = divider.append_axes("right", size="10%", pad=0.05)
cb = fig.colorbar(im, cax=cax, orientation="vertical", label=cmap.name)
cb.set_ticks([])

Advanced¶
generate_optimal_cmap¶
You can extract the optimal number of colors from the image using the generate_optimal_cmap
method.
Under the hood this performs the elbow method <https://en.wikipedia.org/wiki/Elbow_method_(clustering)>
to determine the optimal number of clusters based on the sum of the squared distances between each pixel
and it’s cluster center.
cmaps, best_n_colors, ssd = converter.generate_optimal_cmap(max_colors=10, random_state=42)
best_cmap = cmaps[best_n_colors]
remove_transparent¶
In an image of the Los Angeles Lakers logo, the background is transparent. These pixels
contribute to noise when generating the colors. Running the remove_transparent
method
will remove transparent pixels. Here’s a comparison of the colormaps generated by the same image,
without and with transparency removed.
Make two ImageConverter objects:
from img2cmap import ImageConverter
image_url = "https://loodibee.com/wp-content/uploads/nba-los-angeles-lakers-logo.png"
# Create two ImageConverters, one with transparency removed and one without
converter_with_transparent = ImageConverter(image_url)
converter_with_transparent.remove_transparent()
converter_no_transparent = ImageConverter(image_url)
cmap_with_transparent = converter_with_transparent.generate_cmap(
n_colors=3, palette_name="with_transparent", random_state=42
)
cmap_no_transparent = converter_no_transparent.generate_cmap(
n_colors=3, palette_name="no_transparent", random_state=42
)
Plot both colormaps with the image:
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import make_axes_locatable
for cmap in [cmap_with_transparent, cmap_no_transparent]:
fig, ax = plt.subplots(figsize=(7, 5))
ax.axis("off")
img = converter_no_transparent.image
im = ax.imshow(img, cmap=cmap)
divider = make_axes_locatable(ax)
cax = divider.append_axes("right", size="10%", pad=0.05)
cb = fig.colorbar(im, cax=cax, orientation="vertical", label=cmap.name)
cb.set_ticks([])


Notice, only after removing the transparent pixels, does the classic purple and gold show in the colormap.
resize¶
There is a method of the ImageConverter class to resize images. It will preserve the aspect ratio, but reduce the size of the image.
def test_resize():
imageconverter = ImageConverter("tests/images/south_beach_sunset.jpg")
imageconverter.resize(size=(512, 512))
# preserves aspect ratio
assert imageconverter.image.size == (512, 361)
hexcodes¶
When running the generate_cmap
or the generate_optimal_cmap
methods the ImageConverter object will automatically
capture the resulting hexcodes from the colormap and store them as an attribute.
from img2cmap import ImageConverter
image_url = "https://static1.bigstockphoto.com/3/2/3/large1500/323952496.jpg"
converter = ImageConverter(image_url)
converter.generate_cmap(n_colors=4, palette_name="with_transparent", random_state=42)
print(converter.hexcodes)
Output:
['#ba7469', '#dfd67d', '#5d536a', '#321e28']
Installation¶
pip install img2cmap
You can also install the in-development version with:
pip install https://github.com/arvkevi/img2cmap/archive/main.zip
Documentation¶
Web App¶
Check out the web app at https://img2cmap.fly.dev

Status¶
docs |
|
---|---|
tests |
|
package |
Development¶
Install the development requirements:
pip install img2cmap[dev]
To run all the tests run:
tox
Note, to combine the coverage data from all the tox environments run:
Windows |
set PYTEST_ADDOPTS=--cov-append
tox
|
---|---|
Other |
PYTEST_ADDOPTS=--cov-append tox
|
Installation¶
At the command line:
pip install img2cmap
Usage¶
To use img2cmap in a project:
import img2cmap
Reference¶
img2cmap¶
Contributing¶
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
Bug reports¶
When reporting a bug please include:
Your operating system name and version.
Any details about your local setup that might be helpful in troubleshooting.
Detailed steps to reproduce the bug.
Documentation improvements¶
img2cmap could always use more documentation, whether as part of the official img2cmap docs, in docstrings, or even on the web in blog posts, articles, and such.
Feature requests and feedback¶
The best way to send feedback is to file an issue at https://github.com/arvkevi/img2cmap/issues.
If you are proposing a feature:
Explain in detail how it would work.
Keep the scope as narrow as possible, to make it easier to implement.
Remember that this is a volunteer-driven project, and that code contributions are welcome :)
Development¶
To set up img2cmap for local development:
Fork img2cmap (look for the “Fork” button).
Clone your fork locally:
git clone git@github.com:YOURGITHUBNAME/img2cmap.git
Create a branch for local development:
git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
Install development requirements:
pip install img2cmap[dev]
When you’re done making changes run all the checks and docs builder with tox one command:
tox
Commit your changes and push your branch to GitHub:
git add . git commit -m "Your detailed description of your changes." git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website.
Pull Request Guidelines¶
If you need some code review or feedback while you’re developing the code just make the pull request.
For merging, you should:
Include passing tests (run
tox
).Update documentation when there’s new API, functionality etc.
Add a note to
CHANGELOG.rst
about the changes.Add yourself to
AUTHORS.rst
.
Tips¶
To run a subset of tests:
tox -e envname -- pytest -k test_myfeature
To run all the test environments in parallel:
tox -p auto
Changelog¶
0.0.0 (2022-04-30)¶
First release on PyPI.