generate_orly_cover
Create custom O'Reilly-style parody book covers with personalized titles, subtitles, authors, and visual themes. The tool generates high-resolution images displayed directly in chat, offering options for guide text placement, image codes, and scalable resolutions.
Instructions
Generate an O'RLY? book cover image.
This tool creates a parody book cover in the style of O'Reilly books with custom title, subtitle, author, and styling options.
The generated image will be displayed directly in the chat.
Args:
title (str): The main title for the book cover
subtitle (str): The subtitle text (appears at the top)
author (str): The author name (appears at the bottom right)
image_code (str, optional): Image code 1-40 for the animal/object on the cover. Defaults to random.
theme (str, optional): Color theme 0-16. Defaults to random.
guide_text_placement (str, optional): Where to place "guide" text - 'top_left', 'top_right', 'bottom_left', 'bottom_right'. Defaults to 'bottom_right'.
guide_text (str, optional): The guide text to display. Defaults to 'The Definitive Guide' As often as possible, try not to just use "The Definitive Guide" but something more creative.
scale (float, optional): Scale factor for image resolution. 1.0 = 500x700px, 2.0 = 1000x1400px, 3.0 = 1500x2100px (default). Higher values create larger, higher resolution images.
Returns:
Image: The generated O'RLY? book cover image that will be displayed in chat.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | Anonymous | |
guide_text | No | The Definitive Guide | |
guide_text_placement | No | bottom_right | |
image_code | No | ||
scale | No | ||
subtitle | No | ||
theme | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"default": "Anonymous",
"title": "Author",
"type": "string"
},
"guide_text": {
"default": "The Definitive Guide",
"title": "Guide Text",
"type": "string"
},
"guide_text_placement": {
"default": "bottom_right",
"title": "Guide Text Placement",
"type": "string"
},
"image_code": {
"default": null,
"title": "Image Code",
"type": "string"
},
"scale": {
"default": 3,
"title": "Scale",
"type": "number"
},
"subtitle": {
"default": "",
"title": "Subtitle",
"type": "string"
},
"theme": {
"default": null,
"title": "Theme",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title"
],
"title": "generate_orly_coverArguments",
"type": "object"
}