php中使用GD库压缩图片只压缩宽度 高度不变应该如何处理_百度知道
最佳答案: 如果高度不变的话: function resize($src,$w) { ..... imagecopyresized($temp_img, $im, 0, 0, 0, 0, $w, $height, $width, $height)...更多关于php的GD库能否按百分比压缩图片?的问题>>
php 怎么压缩图片的大小_百度知道
最佳答案: php 压缩图片的大小:<?php$im = imagecreatefromjpeg('D:phpplace.jpeg');resizeImage($im,,,'xinde','.jpg');function resizeImage($im,$max...更多关于php的GD库能否按百分比压缩图片?的问题>>