您的位置:

php实现图片缩放,php缩小图片

本文目录一览:

php图片可以等比例的缩放吗

可以。

等比例缩放的方法是:

1、载入选区--自由变换。如下图:

2、按住shift+alt键,使用鼠标调整大小,这种情况下,选区会按照等比例的方法进行缩放的。

求php图片缩放处理函数

?php

/**

 * 图片缩放

 * @param string $url

 * @param int $maxWidth

 * @param int $maxHeight

 * @return string

 */

function thumb($url, $maxWidth, $maxHeight, $info) {

    $info = $imgInfo = getimagesize($url);

    $width = $imgInfo[0];//获取图片宽度

    $height = $imgInfo[1];//获取图片高度

    $r = min($maxHeight/$height, $maxWidth/$width);

    if($r = 1) { // 不用缩放

        $maxHeight = $height;

        $maxWidth = $width;

    } elseif($r  1) { // 缩放

        $maxHeight = $height * $r;

        $maxWidth = $width * $r;

    }

    $temp_img = imagecreatetruecolor($maxWidth,$maxHeight); //创建画布

    $fun = str_replace('/', 'createfrom', $imgInfo['mime']);

    $im = $fun($url);

    imagecopyresized($temp_img,$im,0,0,0,0,$maxWidth,$maxHeight,$width,$height);

    ob_start();

    $fun = str_replace('/', '', $imgInfo['mime']);

    $fun($temp_img);

    $imgstr = ob_get_contents();

    ob_end_clean();

    imagedestroy($im);

    return $imgstr;

}

$imgUrl = $_GET['url'];

$info = array();

$string = thumb($imgUrl, 500, 500, $info);

$mimeArray = explode("/", $info['mime']);

header("Content-Type:image/{$mimeArray[1]}");

echo $string;

以上代码存为thumb.php,调用效果:

php实现图片等比例缩放代码

新建文件index.php,需要在统计目录下有个图片为q.jpg(可根据源码进行更改图片的名称)

源代码如下:

?php

$filename="q.jpg";

$per=0.3;

list($width,

$height)=getimagesize($filename);

$n_w=$width*$per;

$n_h=$height*$per;

$new=imagecreatetruecolor($n_w,

$n_h);

$img=imagecreatefromjpeg($filename);

//拷贝部分图像并调整

imagecopyresized($new,

$img,0,

0,0,

0,$n_w,

$n_h,

$width,

$height);

//图像输出新图片、另存为

imagejpeg($new,

"q1.jpg");

imagedestroy($new);

imagedestroy($img);

?

使用浏览器运行过后,在index.php同级的目录下会有个q1.jpg,这个图片就是等比例缩放后的图片,路径可以自己在源代码里面更改,放在自己的项目当中去或写个方法也行

以上所述上就是本文的全部内容了,希望对大家学习php语言能够有所帮助。