Replicate any image, pixel by pixel, using Turtle and Python.
- After the image file is given, the image is loaded using Pillow and converted to a .jpeg. Then, the pixel map is created.
- Next, the turtle enviroment is created along with the first turtle.
- Then, the first square is created and filled with the corresponding pixel RGB value.
- This process of creating a small square and filling it with the color fo the corresponding image is repeated for the rest of the image.
pip3 install pillow && sudo apt install python3-tk
This project is licensed under MIT license - see the LICENSE.md file for details