-3

我想下载这张图片: 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);

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

4

1 回答 1

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);
于 2013-03-28T07:36:16.267 回答