如何在yii中使用phpthumb来使其动态调整图像大小?
ex:<img src ='phpthumb.php?src=example.jpg&w=200&h=100'/>
我不能让它在yii中工作。
答案 0 :(得分:0)
我使用此代码段调整了图片大小。
<?php
header('Content-type: image/jpeg');
$image = new Imagick('image.jpg');
$image->adaptiveResizeImage(1024,768);
echo $image;
?>
例如,你可以试试这个
<?php
header('Content-type: image/jpeg');
$image = new Imagick($_GET['src']);
$image->adaptiveResizeImage(1024,768);
echo $image;
?>