tomk/imagehelper

用于图像处理的类

0.1.0 2015-01-28 18:50 UTC

This package is auto-updated.

Last update: 2024-09-19 10:22:33 UTC


README

帮助从字符串中加载和调整图像大小(包括 ICO 图标),并返回用于与 gd 库一起使用的图像资源。

支持 alpha 透明度和放大

其他有用的方法。

用法

$data = file_get_contents('image.file');
$imageHelper = new ImageHelper($data);
$resized = $imageHelper->resize(256, 256, true);
imagepng($resized);