阅读量:0
PHP Thumb 支持透明背景。它使用 GD 库和 Imagick 扩展来处理图像,这些库都支持透明背景。要在 PHP Thumb 中生成带有透明背景的缩略图,你需要确保在处理图像时保留 Alpha 通道。
以下是一个简单的示例,说明如何使用 PHP Thumb 生成带有透明背景的缩略图:
require_once 'vendor/autoload.php'; use PHPThumb\PHPThumb; $sourceImage = 'path/to/your/image.png'; $destinationImage = 'path/to/your/thumbnail.png'; $options = [ 'width' => 100, 'height' => 100, 'background' => 'transparent', ]; $thumb = new PHPThumb($sourceImage, $options); $thumb->create(); $thumb->save($destinationImage);
在这个示例中,我们使用 PHP Thumb 库创建一个宽度为 100 像素,高度为 100 像素的缩略图,并将背景设置为透明。最后,我们将生成的缩略图保存到指定的文件中。