我有以下内容:

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分钟才能完成,因此它正在执行某些操作,但是图像仍在未应用 mask 的情况下输出。

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

最佳答案

更新2015-08-04 11:32 +0000
事实证明,白色透明度是Imagine中选择的 mask 逻辑。
https://github.com/avalanche123/Imagine/pull/449#issuecomment-127516157
原版的
这很可能是Imagine库中的错误。我发现以下内容:

https://github.com/avalanche123/Imagine/pull/449
尚未提交相关的修复程序:
https://github.com/kasuparu/Imagine/commit/66a36652c76f9b5ff640f465d8f970c563841ae6
我尝试了固定的代码,但它似乎起作用了,除了(从我的角度来看)向后应用了蒙版,保留了黑色部分并丢弃了白色部分。我在拉取请求中对此问题发表了评论。
作为引用,这是实际的解决方法:
使用$ blackAmount:

和我的修复程序,使用$ whiteAmount:

关于php - 使用PHP Imagine应用 mask ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31636085/

10-13 23:03