Quote2Image
Quote2Image is a python library for turning text quotes into graphical images
Install / Use
/learn @NotCookey/Quote2ImageREADME
Installation
To install Quote2Image, you can use pip:
pip install Quote2Image
Usage
The Convert function takes the following arguments:
quote: The quote to convert.author: The author of the quote.fg: The foreground color of the text.bg: The background color of the image.font_type: The font to use for the text.font_size: This font size is used for the quote.font_size_author: This font size is used for the author (Optional, Default value is set tofont_size).width: The width of the image.height: The height of the image.watermark_text: The text for the watermark (Leave it blank for no watermarks).watermark_font_size: The font size for the watermark text (Optional, Default save is set tofont_size).
Generating an image using RGB background and foreground
The package comes with a builtin GenerateColors function that generates a fg and bg color with the correct amount of luminosity and returns them in tuples.
from Quote2Image import Convert, GenerateColors
# Generate Fg and Bg Color
fg, bg = GenerateColors()
img=Convert(
quote="Pooing keeps you healthy",
author="Pee",
fg=fg,
bg=bg,
font_size=32,
font_type="arial.ttf",
width=1080,
height=450)
# Save The Image as a Png file
img.save("hello.png")
Generating an image using a custom background image.
We can do that using the ImgObject that gives us alot of flexibility on how we want our background Image to be.
The ImgObject class takes the following arguments:
image: The link to the background image (required).brightness: The brightness of the image (optional, default is 100).blur: The blur of the image (optional, default is 0).
You can then use the ImgObject instance as the bg argument in the convert function:
from Quote2Image import Convert, ImgObject
bg=ImgObject(image="IMAGE FILE LOCATION", brightness=80, blur=80)
img=Convert(
quote="Pooing keeps you healthy",
author="Pee",
fg=(21, 21, 21),
bg=bg,
font_size=32,
font_type="arial.ttf",
width=1080,
height=450)
# Save The Image as a Png file
img.save("hello.png")
Adding a watermark:
watermark_text: The text for the watermark.watermark_font_size: The font size for the watermark text.
from Quote2Image import Convert, GenerateColors
# Generate Fg and Bg Color
fg, bg = GenerateColors()
img=Convert(
quote="Pooing keeps you healthy",
author="Pee",
fg=fg,
bg=bg,
font_size=32,
font_type="arial.ttf",
font_size_author=25,
width=1080,
height=450,
watermark_text="@My.Watermark",
watermark_font_size=15
)
# Save The Image as a Png file
img.save("hello.png")
Permissions
- You are allowed to use, modify, and distribute the module.
- You are allowed to distribute modified versions of the module, as long as you follow the terms of the license.
Obligations
- You must include a copy of the GPL-3.0 license with the module.
- You must provide a copy of the source code of the module, either along with the modified version of the module or through a written offer to provide the source code.
- You must provide a prominent notice stating that you have modified the module, and the date of the modification.
- If you distribute the module, you must do so under the terms of the GPL-3.0 license.
Star History
<a href="https://star-history.com/#NotCookey/Quote2Image&Date"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=NotCookey/Quote2Image&type=Date&theme=dark" /> <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=NotCookey/Quote2Image&type=Date" /> <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=NotCookey/Quote2Image&type=Date" /> </picture> </a>That's It
Thank You! Hope this was useful to you <3
Related Skills
claude-opus-4-5-migration
112.3kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
model-usage
354.3kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
TrendRadar
51.4k⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。
mcp-for-beginners
15.8kThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable, and secure AI workflows from session setup to service orchestration.
