15

我有以下内容:

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Imagine\Image\Box;
use Imagine\Image\ImageInterface;
use Imagine;

class UploadController extends Controller {

    public function processImage($request) {
        $file = $request->file('file');

        $path = '/images';
        $fileName = 'image.png';

        if ($file) {
            $file->move('../public' . $path, $fileName);
            $gThumb = $this->createThumbnail(219, 300, '../public/images', 'image', 'png', 'thumb', true);
            $pThumb = $this->createThumbnail(300, 300, '../public/images', 'image', 'png', 'pthumb');
            return response()->json([
                'gallery_thumbnail' => $path . '/' . $gThumb,
                'upload_thumbnail' => $path . '/' . $pThumb
            ]);
        }
    }

    function createThumbnail($height, $width, $path, $filename, $extension, $postfix = null, $mask = null)
    {
        $mode = ImageInterface::THUMBNAIL_OUTBOUND;
        $size = new Box($width, $height);
        $postfix = $postfix ? $postfix : 'thumb';


        $thumbnail = Imagine::open("{$path}/{$filename}.{$extension}")->thumbnail($size, $mode);
        if ($mask) {
            $mask = Imagine::open('../public/images/masks/bubble-splash.png');
            $thumbnail->applyMask($mask);
        }
        $destination = "{$filename}" . "." . $postfix . "." . "{$extension}";

        $thumbnail->save("{$path}/{$destination}");
        return $destination;
    }
}

它会按预期保存图像,但不会将蒙版应用于缩略图。

我哪里出错了(我使用的是 Laravel 5)?


此外,当脚本运行时,它实际上需要大约 1 分钟才能完成,所以它正在做一些事情,但图像仍然在没有应用掩码的情况下输出。


最后我想我会用这些家伙https://www.imgix.com/

4

1 回答 1

4

更新 2015-08-04 11:32 +0000

原来白色透明度是 Imagine 中选择的屏蔽逻辑。
https://github.com/avalanche123/Imagine/pull/449#issuecomment-127516157

原来的

这很可能是 Imagine 库中的错误。我发现了以下内容:

我无法使 GD\Image::applyMask() 像http://www.slideshare.net/avalanche123/introduction-toimagine中的反射示例中所述那样工作,所以我做了一些修复。

  1. 它仍然只支持 RGB 调色板作为遮罩,但现在计算颜色之间的平均值。
  2. 如果透明度小于 0.5,它会改变图像。

来自https://github.com/avalanche123/Imagine/pull/449

相关修复尚未提交:
https ://github.com/kasuparu/Imagine/commit/66a36652c76f9b5ff640f465d8f970c563841ae6

我尝试了固定代码,它似乎可以工作,除了面具(从我的角度来看)向后应用,保留黑色部分并丢弃白色部分。我在拉取请求中评论了这个问题。

作为参考,这是正在执行的修复:

使用 $blackAmount: php-imagine-applymask-using-blackamount-20150731-1831-gmt

而我的修复,使用 $whiteAmount: php-imagine-applymask-using-whiteamount-20150731-1831-gmt

于 2015-07-31T18:47:13.900 回答