Skip to main content

A package for generating Dolze templates

Project description

Dolze Templates A powerful Python library for generating stunning, dynamic images using JSON templates

Overview Dolze Templates is a versatile Python library designed to simplify the creation of dynamic, visually appealing images through intuitive JSON templates. Perfect for generating social media posts, marketing materials, product showcases, and more, Dolze Templates empowers developers to craft professional-grade visuals with minimal effort. ✨ Features

Dynamic Image Generation: Create stunning images programmatically using JSON templates. Rich Component Library: Includes text, images, buttons, shapes, HTML/CSS, and more for flexible designs. HTML Rendering: Create templates using HTML and CSS for maximum flexibility and customization. High Performance: Optimized with intelligent caching for fast image generation. Extensible Architecture: Easily add custom components and templates to suit your needs. Advanced Styling: Supports transparency, gradients, shadows, and other visual effects. Responsive Design: Templates adapt seamlessly to various dimensions and resolutions. Robust Validation: Comprehensive input validation with clear, helpful error messages. CLI Support: Process templates efficiently using the built-in command-line interface.

📦 Installation Dolze Templates requires Python 3.8 or higher. Install the latest version from PyPI: pip install dolze-templates

Optional Dependencies Enhance functionality with additional dependencies:

For image processing

pip install dolze-templates[images]

For advanced text rendering

pip install dolze-templates[text]

For HTML rendering capabilities

pip install dolze-templates[html]

For all optional dependencies

pip install dolze-templates[all]

Development Setup To contribute or modify the source code: git clone https://github.com/yourusername/dolze-templates.git cd dolze-templates python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate pip install -e ".[dev]" pytest # Run tests

🚀 Quick Start Basic Usage Render a template with a few lines of code: from dolze_image_templates import TemplateEngine

Initialize the template engine

engine = TemplateEngine(output_dir="./output", cache_dir="./cache")

Process a template

result = engine.process_from_file("templates/social_media_post.json") print(f"Generated: {result}")

Rendering with Variables Dynamically populate templates with custom data: from dolze_image_templates import TemplateEngine

engine = TemplateEngine() context = { "heading": "Welcome to Dolze", "subheading": "Create amazing images with ease", "image_url": "https://example.com/hero.jpg" } result = engine.process_template("brand_info", template_config, context) print(f"Image saved to: {result}")

Command-Line Interface Use the CLI for quick template processing:

Render a single template

dolze-templates render templates/post.json -o output/

Process all templates in a directory

dolze-templates render templates/ -o output/ --recursive

Clear cache

dolze-templates cache clear

🎨 Available Templates

Template Name Description Sample

brand_info Professional brand information card View Sample

quote_template Elegant quote display with styling View Sample

product_showcase Product showcase with details and images View Sample

Explore more templates in the examples/ directory. 🧩 Components Dolze Templates provides a rich set of built-in components: Text Component { "type": "text", "text": "Hello, World!", "position": [100, 200], "font_size": 36, "color": [0, 0, 0, 255], "font_path": "Poppins-Bold", "max_width": 800 }

Image Component { "type": "image", "image_url": "https://example.com/image.jpg", "position": [0, 0], "size": [800, 600], "border_radius": 10, "opacity": 0.9 }

HTML Component { "type": "html", "html_content": "

${title}

${content}

", "css_content": ".card { padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }", "position": [50, 50], "size": [800, 600], "background_transparent": false }

Button Component { "type": "cta_button", "text": "Click Me", "position": [100, 400], "size": [200, 50], "bg_color": [33, 150, 243, 255], "text_color": [255, 255, 255, 255], "corner_radius": 25 }

🛠️ Advanced Usage Custom Components Extend functionality by creating custom components: from dolze_image_templates.components import Component from PIL import Image, ImageDraw

class CustomShapeComponent(Component): def init(self, position, size, color, **kwargs): super().init(position=position, **kwargs) self.size = size self.color = color

def render(self, image, context):
    draw = ImageDraw.Draw(image)
    draw.rectangle(
        [self.x, self.y, self.x + self.size[0], self.y + self.size[1]],
        fill=tuple(self.color)
    )
    return image

Register the component

from dolze_image_templates import get_template_registry registry = get_template_registry() registry.register_component('custom_shape', CustomShapeComponent)

Template Structure Define templates using JSON: { "name": "social_media_post", "settings": { "size": [1080, 1080], "background_color": [255, 255, 255, 255] }, "components": [ { "type": "text", "text": "${greeting}", "position": [100, 100], "font_size": 64, "color": [0, 0, 0, 255] } ] }

📋 Template Variables Templates support dynamic variables for flexible content:

logo_url: URL to your logo image_url: URL to the main image heading: Primary text subheading: Secondary text cta_text: Call-to-action text contact_email: Contact email contact_phone: Contact phone website_url: Website URL quote: Quote text for quote templates

📚 API Reference TemplateEngine The core class for processing templates: engine = TemplateEngine( output_dir='output', cache_dir='.cache', auto_create_dirs=True ) result = engine.process_from_file('template.json')

TemplateRegistry Manages components and template loaders: registry = get_template_registry() registry.register_component('custom', CustomComponent)

🤝 Contributing We welcome contributions! To get started:

Fork the repository Create a feature branch: git checkout -b feature/your-feature Commit changes: git commit -m 'Add your feature' Push to the branch: git push origin feature/your-feature Open a pull request

See Contributing Guidelines for details. 📄 License This project is licensed under the MIT License. See the LICENSE file for details. 📬 Contact For support or inquiries, open an issue on GitHub or email us at support@dolze.com.

Made with ❤️ by the Dolze Team

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dolze_image_templates-1.0.8.tar.gz (20.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dolze_image_templates-1.0.8-py3-none-any.whl (21.0 MB view details)

Uploaded Python 3

File details

Details for the file dolze_image_templates-1.0.8.tar.gz.

File metadata

  • Download URL: dolze_image_templates-1.0.8.tar.gz
  • Upload date:
  • Size: 20.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for dolze_image_templates-1.0.8.tar.gz
Algorithm Hash digest
SHA256 51dd4f99ccc06e1bf5d47fe27b482d58bc2ba406360c7d53b5450279b73366a0
MD5 4eeab34282c26516eb4772481e98896e
BLAKE2b-256 af6619a0006c9c4fbcc9ff65bd6f2a7d9cf43284c692fe8f3a034e1ffc5acbab

See more details on using hashes here.

File details

Details for the file dolze_image_templates-1.0.8-py3-none-any.whl.

File metadata

File hashes

Hashes for dolze_image_templates-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 64fb6b65bf5222ebaee5ebe72f56eabff24f6af716a8f9f4d69be351798e28c9
MD5 81e7e61148eb1e7778a9696c489a1052
BLAKE2b-256 1d6fcba8f7675815caa757740cbff5e5942f1928835954fd4b9b10054717db8e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page