我在详细视图页面中使用以下代码来渲染图像。图像渲染正确,但没有调整大小。我做错了什么?
[
'label'=>'photo',
'value'=>'uploads/' . $model->photo,
'format' => 'image',['width'=>'100','height'=>'100'],
],
感谢。
答案 0 :(得分:0)
使用yii\helpers\Html;
[
'label'=>'Image',<br>
'value'=>Html::img(Yii::$app->request->baseUrl.'/media/category/'.$model->image,'width'=>200, 'alt'=>'no image']),<br>
'format'=>'raw'
],