2013-07-20 45 views
0

如何在yii中使用phpthumb使其在飛行中調整圖像大小?Yii圖像在飛行中調整大小?

例如:<img src ='phpthumb.php?src=example.jpg&w=200&h=100'/>

我不能讓它工作在警予。

+0

http://www.yiiframework.com/wiki/419/image-resize-on-the-fly/ – topher

回答

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; 
?>