如何在PHP中以编程方式调整图像大小?

时间:2014-04-16 06:40:43

标签: php image-processing image-resizing resize-image

我遇到了一些解决方案,但所有这些都是基于上传图片。我想要的是它应该从一个文件夹中获取图像,调整特定大小的大小,然后将其保存在其他文件夹中。

2 个答案:

答案 0 :(得分:0)

尝试PHP库函数imagecopyresized()

这是一个示例程序,

// 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);

这是imagecopyresized()的手册。 http://www.php.net/manual/en/function.imagecopyresized.php

答案 1 :(得分:0)

我通常使用GD库。它工作正常。有关示例,请参阅此网址:http://runnable.com/UnF-tFdudNt1AABt/how-to-resize-an-image-using-gd-library-for-php