ajenbo/image.php

使用GD函数进行简单图像处理的辅助函数。

0.9.4 2017-11-20 12:28 UTC

This package is auto-updated.

Last update: 2024-09-14 02:51:50 UTC


README

Codacy Badge

使用GD函数进行简单图像处理的辅助函数。

### 示例 打开图像,移除任何边框,调整大小为64x64并保存。


$path = 'test.png';
$image = new Image($path);
$imageContent = $image->findContent();
$image->crop(
    $imageContent['x'],
    $imageContent['y'],
    $imageContent['width'],
    $imageContent['height']
);
$image->resize(64, 64);
$image->save($path, 'png');