想象一下Yii,问题是调色板/颜色

时间:2013-10-15 08:05:34

标签: php yii colors palette php-imagine

我用作曲家安装了Yii和Imagine并尝试使用想象。 问题是当我尝试使用想象网站介绍中的代码时出现错误500:

Argument 2 passed to Imagine\Gd\Imagine::create() must be an instance of Imagine\Image\Color, instance of Imagine\Image\Palette\Color\RGB given

代码:

    use Imagine\Image\Box;
    $imagine = new Imagine\Gd\Imagine();
    $palette = new Imagine\Image\Palette\RGB();
    $size  = new Box(400, 300);
    $color = $palette->color('#000', 100);
    $image = $imagine->create($size, $color);
    $image->save('images/test.png');

当我编辑这一行时:

    $image = $imagine->create($size, $color);

   $image = $imagine->create($size);

图片是白色的,所以我想Imagine正在工作

我错过了什么吗?我是否必须在配置或其他内容中更改某些内容?

任何想法都将不胜感激

由于

0 个答案:

没有答案