Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 856 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 856 Bytes

TextToQuoteImage

Python library to convert text to a quote image

It can automatically adjust the text to the fit the bg image width & height

Basic Usage

from ImageQuote import ImageQuote

image = ImageQuote()
image.set_quote("स्वार्थ संसार का एक ऐसा कुआं है जिसमें गिरकर निकल पाना बड़ा कठिन होता हैं।")
image.set_quote_by("भगवान श्री कृष्ण")
image.set_font_family("/path/to/font/file.ttf")
image.set_background_image("/path/to/background_image/file.jpeg")

image.generate_image("./output")