我试图在运行时在 yii 中调整图像大小,但不起作用。
我在视图中尝试了此代码,但它不起作用。
我在 view.php 中的代码
header('Content-Type: image/jpeg');
$image = imagecreatefromjpeg('image.jpg');
echo imagejpeg($image);
我在控制器中的代码
public function actionImage()
{
$this->render('image');
}
输出html
<html debug="true">
<body style="margin: 0px; ">
<img style="-webkit-user-select: none; " src="http://localhost/yiiadministration/index.php?r=administration/products/image"/>
</body>
<script src="chrome-extension://bmagokdooijbeehmkpknfglimnifench/googleChrome.js"/>
</html>
附言; 视图中的代码只是为了查看操作,而不是缩放图像,因为我通常在 php.ini 中执行此操作。
任何人都可以帮忙吗?