Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 525 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 525 Bytes

image_cloud

A little function based on the word_cloud generator to create a cloud, but with images.

Image Cloud

Installation

Install wordcloud via pip

pip install wordcloud

Then import the CloudBuilder and get started!

from PIL import Image
from image_cloud import CloudBuilder

cloud = CloudBuilder(height=2000, width=2000)
canvas = cloud.generate(imgs, retries=10)
Image.fromarray(canvas).save("image_cloud.png")