README.md (view raw)
1# python-meme
2Python program that creates a meme from an image and caption text
3
4## How to use
5
6Edit `main.py` near the bottom and change these lines to what you need for your image
7
8```
9caption = "Now I Have a Caption"
10image = './my_image.jpg'
11outputImage = './my_captioned_image.jpg'
12```
13
14Using the command line run
15
16`python main.py`