Make stickers out of your Telegram messages!
You can install from PyPI:
pip install --user stickerify
or from source:
python setup.py install --user
First you have to make screenshots and put them into a folder. See examples in examples folder. Then you can run the program with optional output directory:
stickerify input_directory --out output_directory
You will see you screenshots. Click on messages you want to save. When you click on first message, a contour around all messages will appear. To proceed to other image or close the program click on space outside of messages.
If your shell can not find stickerify you might need to add ~/.local/bin
to your PATH environment variable:
export PATH=$PATH:~/.local/bin
or even add it to your .bashrc:
echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc
If you want to use stickerify in virtualenv on MacOS you might need to uninstall python,
install tkinter via brew install tcl-tk
and install python back.