从网址获取图像并调整大小,同时保持图像质量

时间:2017-03-13 16:04:30

标签: php image

使用以下功能调整图像大小。

<?php
function resize($get_width, $get_height, $image_url){
  header('Content-type: image/jpeg');
  list($width, $height) = getimagesize($image_url);
  $image_p = imagecreatetruecolor($get_width, $get_height);
  $image = imagecreatefromjpeg($image_url);
  imagecopyresampled($image_p, $image_url, 0, 0, 0, 0, $get_width, $get_height, $width, $height);
  imagejpeg($image_p, null, 100);
}
?>

问题

在调整大小时图像质量下降。

示例

使用css调整图像大小

enter image description here

使用上面的功能调整图像

enter image description here

我需要什么

的质量与第一张图片相似,但使用的是php函数而不是css。

0 个答案:

没有答案