设置宽度图像gridview yii2

set width image gridview yii2

我正在尝试在网格视图中设置图像的宽度。

 [   'attribute' => 'iduser.photo',
            'headerOptions' => ['width' => '20px'],
            'format' => 'image',
            'value'=>  function($data) { return Html::img("avatar.jpg",['width'=>'100']); },
        ],

这是模型

public function getImageurl()
{
    return Yii::$app->request->BaseUrl.'/avatar.jpg';
}

但是 src 结果

http://localhost/belajar4/web/%3Cimg%20src=%22avatar.jpg%22%20width=%22100 %22%20alt=%22%22%3E

试试这样的格式 raw

    [   'attribute' => 'iduser.photo',
        'headerOptions' => ['width' => '20px'],
        'format' => 'raw',
        'value'=>  function($data) { return Html::img("avatar.jpg",['width'=>'100']); },
    ],