hanzhi713 / image-collage-maker

A photo mosaic (pixel collage) maker. Use all your friends' profile pictures to approximate your profile picture! 如何用 Python 制作一个炫酷的微信好友图
MIT License
151 stars 14 forks source link

Additional features #29

Open jag2x opened 6 months ago

jag2x commented 6 months ago

Hi,

Is it possible to have additional features added:

Load PNG images which include transparent backgrounds as the tiles. The tiles are not specifically preset in the constraint of a set X/Y dimension but are based on the above construct of however the foreground object is in the PNG file. For example a long point leaf (and a transparent background in the PNG), only the leaf is utilized to make the mosaic and the transparent background is not included. Each PNG like the leaf can be rotated in a 360 degree fashion.

Thanks this is a great project. Jag

jag2x commented 6 months ago

Here is an example. I would make a block alphabet "W" as my input subject. Load my PNG tiles of flowers with transparent backgrounds. Example

I don't expect it to be exactly as the above image, but say just the blue and pink tulip. Potentially rotating the blue and pink tulip. Possibly if it can resize it as well? :)

Hopefully it can be achieved. Thanks Jag

hanzhi713 commented 6 months ago

This would be pretty hard. Basically now we need to discard the notion of a grid. Instead, we pack tiles of arbitrary shape together. I cannot even think of a brute force solution to this.