如何放大图像{PHP}

时间:2015-04-26 08:39:16

标签: php image-processing

我使用下面的代码来获取图片:

<div>
    {{name}}
</div>

我收到了一张640px x 640px的图像,同时我预计会有800px x 600px的图像。如何将该图像缩放到800px x 600px?

1 个答案:

答案 0 :(得分:0)

尝试这样做:

<?php
// File and new size
$filename = 'test.jpg';
$percent = 0.5;

// Content type
header('Content-Type: image/jpeg');

// Get new sizes
list($width, $height) = getimagesize($filename);
$newwidth = $width * $percent;
$newheight = $height * $percent;

// Load
$thumb = imagecreatetruecolor($newwidth, $newheight);
$source = imagecreatefromjpeg($filename);

// Resize
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

// Output
imagejpeg($thumb);
?>

此处,重新缩放为50%,您可以根据需要更改参数。您甚至可以使用Imagick进行图像处理。如果有帮助的话,请参阅。

简称:PHP Manual