nhujanen/image

GD包装器

0.0.2 2019-06-06 12:59 UTC

This package is auto-updated.

Last update: 2024-09-07 17:18:59 UTC


README

GD包装器

安装

composer require nhujanen/image

需求

PHP 7.1+ ext-gd扩展,支持JPEG和PNG

支持

  • JPEG
  • PNG
  • WEBP
  • GIF

提供

  • 调整大小(包含/覆盖模式)
  • 裁剪(中间焦点/自由焦点)
  • 旋转(带裁剪)
  • 镜像(X和Y轴)
  • 矩形(带X2/Y2支持)
  • 颜色
  • 绘图

用法

test/test.php

基本用法示例

// Load test.png
$image = Wex\Image::load('test.png');

// Resize to 300x200 (contained)
$thumb = $image->resize(300, 200);

// Save image as JPEG
$thumb->saveAs(Wex\Image\JPEG::class, "test_thumb.jpg");