-2
我期待在頁面加載時使用PHP縮小圖像大小。 ?我真的不來知道如何做到這一點,我已經儘可能獲得維度,但我會如何降低使用PHP只有這些尺寸得到這裏是我當前的代碼:縮小圖像大小php
<?php
$stmt = $db->query('SELECT * FROM img_gallery ORDER BY list');
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) :
$image = $row['url'];
list($width, $height) = getimagesize($image); //grab the image dimensions here
?>
<img src="" width="<?=$width ?>px" height="<?=$height ?>px" /> //image here
所以每個尺寸減少幾百個像素?
有什麼問題?只需將值分爲任何你想要的值 – Ohgodwhy
phpThumb()是PHP縮略圖生成器鏈接 - http://phpthumb.sourceforge.net/demo/demo/phpThumb.demo.demo.php –
你的意思是像 mmmm