Skip to main content

Create Word Art From An Image Using Python

If you are Python developer then you may be fully convinced that we can do very cool things using Python in very easy way.

Today I’m going to show you a very beautiful usage of Python, in which we will see how we can generate a word art of any given image. You can pick an image of your pet, you can pick an image of a natural scenery, you can pick an image of human, basically you can pick anything as your image. 

Once the image is selected, it is just the matter of few lines of Python code.

Package

To generate word art we need to install a package named pywhatkit. If you are using pip to install your Python packages, then here is the syntax:
pip install pywhatkit

Code

Once the package is installed, you need to import the package and call the function named image_to_ascii_art(…). This function will take two parameters — first one is the image file path and second parameter is the name for output file.

Here are the two lines of code:
import pywhatkit
pywhatkit.image_to_ascii_art(“Wolf.png”,”MyArt”)

Sample Input Image and Output


Hope you enjoyed creating this word art. You can also watch this complete flow on my YouTube channel named Shweta Lodha.

Comments