承接 ucraft-com/thumbnail-generator 相关项目开发

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

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

ucraft-com/thumbnail-generator

最新稳定版本:1.0.0

Composer 安装命令:

composer require ucraft-com/thumbnail-generator

包简介

This PHP package provides a comprehensive solution for generating thumbnails from various file types, including images, videos, PDF documents, and audio files.

README 文档

README

Thumbnail Generator is a versatile Laravel package designed to create and manage thumbnails from various file types, including images, videos, audios, documents, and PDF files. This package provides a straightforward API to generate thumbnails and customize their dimensions and quality.

Features

  • Multiple File Type Support: Generate thumbnails from images (JPEG, PNG, GIF), videos, audios, documents, and PDF files.
  • WebP Support: Generate WebP thumbnails for better compression and faster load times.
  • Customizable Dimensions: Specify the width and height of the thumbnails.
  • Quality Control: Adjust the quality of the generated thumbnails to balance between size and visual fidelity.
  • Aspect Ratio Maintenance: Automatically maintain the aspect ratio of the original media.

Requirements

  • PHP: 8.1 or higher
  • Imagick PHP extension: You need to have the Imagick PHP extension installed and enabled to use the ThumbnailGenerator package.

Installation

You can install the package via Composer:

composer require ucraft-com/thumbnail-generator

php artisan vendor:publish --provider="Uc\ThumbnailGenerator\ThumbnailGeneratorServiceProvider"

Basic Usage

Images

use Uc\ThumbnailGenerator\ThumbnailGeneratorFactory;

$factory = new ThumbnailGeneratorFactory(...);
$gen = $factory->createImageThumbnailGenerator();
$content = $gen->generate($file, 200, 200);

WebP Thumbnails

To generate WebP thumbnails, use the makeWebPAware method to decorate the ThumbnailGenerator instance:

use Uc\ThumbnailGenerator\ThumbnailGeneratorFactory;

$factory = new ThumbnailGeneratorFactory(...);
$gen = $factory->createImageThumbnailGenerator();
$webPGen = $factory->makeWebPAware($gen);

// Generate a WebP thumbnail using a decorated instance
[$content, $webPContent] = $webPGen->generate($file, 200, 200);

统计信息

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

GitHub 信息

  • Stars: 2
  • Watchers: 2
  • Forks: 0
  • 开发语言: Rich Text Format

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-08-05