thayllonvictor/phpthumb

一个使用 gd 库从图像中裁剪和创建缩略图的简单类。

v1.0.0 2023-11-14 13:44 UTC

This package is auto-updated.

Last update: 2024-09-14 15:42:35 UTC


README

一个使用 gd 库从图像中裁剪和创建缩略图的简单类。

安装

composer require thayllonvictor/phpthumb

用法

// Create class PHPThumb
$phpThumb = new PHPThumb();

// Set file imagem: upload file or path file
$phpThumb->loadImage('example.jpg');

// Set width your thumbnail
$phpThumb->thumbWidth('100');

// Set height yout thumbnail
$phpThumb->thumbHeight('100');

// Set name image with a extension 
$phpThumb->setFileName('new-thumnail.png');

// Set dir save
$phpThumb->savePath('thumbs/');

// Generate thumbnail
$phpThumb->generateThumb();