overvoidjs/imgun

用于处理PHP中的某些图片的类

dev-master 2021-01-29 13:53 UTC

This package is auto-updated.

Last update: 2021-12-29 03:17:45 UTC


README

imgun

// 加载图像(指定路径)

$imgun = new imgun('test.jpg');

// 改变图像分辨率(设置:exact, portrait, landscape, auto, crop)

$imgun->resizeImage(1500, 1200, 'auto');

// 保存图像(第二个参数,这是相对于原始图像的质量百分比)

$imgun->saveImage('test-resize.jpg', 50);