承接 vedanshi-shethia/ai-banner-generator 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

vedanshi-shethia/ai-banner-generator

Composer 安装命令:

composer require vedanshi-shethia/ai-banner-generator

包简介

Laravel package to generate website banners using Gemini AI

README 文档

README

A driver-based, extensible Laravel package for generating high-quality website banners using AI image models (Gemini, OpenAI, or custom providers).

This package abstracts AI image generation, prompt building, image handling, and storage, while allowing developers to plug in their own AI drivers without touching core logic.

✨ Features

  • 🔌 Driver-based architecture (Gemini, OpenAI, Null, Custom)
  • 🧠 Centralized AI model management
  • 🖼️ Supports image-to-image generation
  • 🧩 Fully extensible with custom drivers
  • 🧼 Automatic temporary file cleanup
  • 📦 Clean separation of concerns (Service, Drivers, Helpers)
  • 🛡️ Safe base64 image validation before storage

📦 Installation

1️⃣ Install via Composer

composer require vedanshi/ai-banner-generator

2️⃣ Publish Configuration

php artisan vendor:publish --tag=ai-banner-generator

This will create:

config/ai-banner-generator.php

3️⃣ Configure Storage

Ensure your output disk is publicly accessible.

php artisan storage:link

🔑 Environment variables

AI_BANNER_DRIVER = 'driver_name'

# Storage
GEMINI_INPUT_DISK=local
GEMINI_OUTPUT_DISK=public

🧠 Storage Design (Important)

This package follows industry best practices:

Type Disk Visibility
Input images local 🔒 Private
Generated banners public 🌍 Public
storage/
├── app/
│   ├── private/
│   │   └── banner/input/
│   └── public/
│       └── banner/output/

⚙️ Configuration (config/ai-banner-generator.php)

return [

    /*
    |--------------------------------------------------------------------------
    | Driver Configuration
    |--------------------------------------------------------------------------
    */

    'driver' => env('AI_BANNER_DRIVER', 'gemini'),

    'drivers' => [

        'gemini' => [
            'model'   => env('GEMINI_MODEL', 'gemini-2.5-flash-image'),
            'api_key' => env('GEMINI_API_KEY'),
        ],

        'openai' => [
            'model'   => env('OPENAI_MODEL', 'gpt-4o-mini'),
            'api_key' => env('OPENAI_API_KEY'),
        ],

    ],

    /*
    |--------------------------------------------------------------------------
    | Storage Configuration
    |--------------------------------------------------------------------------
    */

    'disks' => [
        'input'  => env('BANNER_INPUT_IMAGE_DISK', 'local'),   // private
        'output' => env('BANNER_OUTPUT_IMAGE_DISK', 'public'), // public
    ],

    'paths' => [

        // Input uploads
        'front' => 'banner/front',
        'back' => 'banner/back',
        'reference' => 'banner/ref',

        // Output (generated banners)
        'output' => 'banner/output',
    ],

    'cleanup' => [
        'enabled' => true,
    ],

    /*
    |--------------------------------------------------------------------------
    | Output Configuration
    |--------------------------------------------------------------------------
    */
    'output' => [
        'format' => 'png',
        'allowed_mime_types' => ['image/png', 'image/jpeg'],
    ],

];

📌 Important

  • Users switch models only via config
  • No runtime config injection
  • Drivers stay clean and predictable

🧠 Architecture Overview

Controller / App
     ↓
BannerService
     ↓
BannerDriverFactory
     ↓
Driver (Gemini / OpenAI / Custom)
     ↓
AI Model

Key Components

Layer Responsibility
Service Business flow
Factory Driver resolution
Driver AI interaction
Helpers Image / prompt handling
Storage File persistence

🧩 Banner Generation Flow

  1. Input images are uploaded
  2. Images are loaded & converted to Base64
  3. Prompt is generated
  4. Driver is resolved
  5. AI generates banner
  6. Image is validated & stored
  7. Temporary files are cleaned
  8. Public URL is returned

🚀 Usage

1️⃣ Sync Generation (Facade)

use Vedanshi\Banner\Facades\Banner;
use Vedanshi\Banner\Http\Requests\BannerGenerationRequest;

function (BannerGenerationRequest $request) {
    $result = Banner::generate($request->payload());
}

Returns a public URL of the generated banner.

2️⃣ Async Generation (Queue)

use Vedanshi\Banner\Jobs\BannerGenerationJob;
use Vedanshi\Banner\Http\Requests\BannerGenerationRequest;

function (BannerGenerationRequest $request) {
    BannerGenerationJob::dispatch($request->payload());
}

✅ Ideal for:

  • Heavy image processing
  • High-traffic systems
  • Background workflows

🧾 Expected Payload Structure

[
    'front_image' => string,        // path on input disk
    'back_image' => string,         // path on input disk
    'transparent_image' => string,  // path on input disk
    'product_name' => string,
]

⚠️ Do NOT pass temp paths (php/tmp). Files must be stored first using Laravel storage.

🧹 Automatic Cleanup

  • Input images are deleted immediately after successful generation
  • Cleanup is retry-safe
  • Cleanup can be disabled via config
'cleanup' => [
    'enabled' => false,
],

🖼️ Image Handling & Safety

Before storing the generated image:

  • data:image/*;base64,... is handled
  • Strict Base64 decoding
  • Image validity is verified
  • MIME type is validated
ImageStorage::store($base64);

This prevents:

  • Invalid data storage
  • Corrupt images
  • Security risks

🔌 Built-in Drivers

Gemini Driver

new GeminiDriver($config);

Uses Prism internally for image generation.

OpenAI Driver

new OpenAIDriver($config);

Abstracted behind the same interface.

Null Driver

new NullDriver($config);

Useful for:

  • Testing
  • CI pipelines
  • Fallback mode

🧩 Creating a Custom Driver (User Extensible)

1️⃣ Implement the Contract

use Vedanshi\Banner\Contracts\BannerDriver;

class MyDriver implements BannerDriver
{
    public function __construct(protected array $config) {}

    public function generate(string $prompt, array $images): string
    {
        // Custom AI logic
        return $base64;
    }
}

2️⃣ Register the Driver

use Vedanshi\Banner\Factory\BannerDriverFactory;

BannerDriverFactory::extend('my-driver', function ($config) {
    return new MyDriver($config);
});

3️⃣ Add Key in .env

AI_BANNER_DRIVER = 'my-driver'

🎉 Done — no core code touched.

🧠 Why This Design Works

  • Manager-controlled configuration
  • ✔ No runtime config injection
  • ✔ Clean SOLID design
  • ✔ Laravel-style driver extension
  • ✔ Production-ready

This is the same architecture Laravel uses for Cache, Queue, Mail, and Filesystems.

🧪 Testing

Use the null driver:

AI_BANNER_DRIVER = 'null'

This avoids API calls and allows fast testing.

📌 Summary

  • AI-agnostic banner generation
  • Driver-based extensibility
  • Safe image handling
  • Clean separation of concerns
  • Enterprise-grade Laravel architecture

📄 License

MIT License

🙌 Credits

Developed by Vedanshi Shethia

🤝 Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss improvements.

vedanshi-shethia/ai-banner-generator 适用场景与选型建议

vedanshi-shethia/ai-banner-generator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 12 月 31 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 vedanshi-shethia/ai-banner-generator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 vedanshi-shethia/ai-banner-generator 我们能提供哪些服务?
定制开发 / 二次开发

基于 vedanshi-shethia/ai-banner-generator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 18
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-12-31