0
假設我有一張200x100px的圖片。有沒有PHP函數或PHP庫函數可以取消縮放這樣的圖片?以PHP縮放圖片
所以我會打電話是這樣的:
$new_picture = unzoom($picture, $percentage);
// and the new picture will be smaller based on $percentage
任何想法?
假設我有一張200x100px的圖片。有沒有PHP函數或PHP庫函數可以取消縮放這樣的圖片?以PHP縮放圖片
所以我會打電話是這樣的:
$new_picture = unzoom($picture, $percentage);
// and the new picture will be smaller based on $percentage
任何想法?
有幾種選擇:
imagecopyresampled()
使用GDImagick::resizeImage()
使用ImageMagick
你嘗試過什麼?你可以參考這個http://php.net/manual/en/book.image.php – Rikesh
200x100px是非常小的開始?雖然我想也許你想創建一個縮略圖... – thomasrutter
你是什麼意思由unzoom?你想調整圖片? – Kishore