使用php下载图像,同时调整大小

时间:2013-03-28 07:31:29

标签: php

我想下载这张图片: http://imgs.xkcd.com/clickdrag/1n2w.png

但是图像对我来说太大了所以我想调整它的大小比现在小100倍。此外,我希望图像具有其原始名称(在本例中为1n2w.png)。

For downloading i was thinking of using somet
$content = file_get_contents('http://imgs.xkcd.com/clickdrag/1n2w.png');
file_put_contents('/images', $content);

但它没有用。也许我需要使用卷曲吗? 至于调整大小部分,我不知道该使用什么,所以如果可能的话我也想看到一些建议。

1 个答案:

答案 0 :(得分:0)

对于图像重新调整大小,您可以使用它。

    $percent = 0.5;

    $filename = '/home/Pictures/downloaded_file.jpg';

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

    list($width, $height) = getimagesize($filename);

    $new_width = $width * $percent;

    $new_height = $height * $percent;

    $image_p = imagecreatetruecolor($new_width, $new_height);

    $image = imagecreatefromjpeg($filename)
    ;
    imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);

    imagejpeg($image_p, null, 100);