我尝试使用图像 url 从 php 调整图像大小。例如 http://urlimages.com/images.jpg。但是如果我们输入帖子 url 示例 http://urlimages.com/images.jpg?w=512,它不起作用如何修改...
我尝试使用图像 url 从 php 调整图像大小。
示例 http://urlimages.com/images.jpg .
但如果我们输入帖子网址示例,它不起作用
http://urlimages.com/images.jpg?w=512
如何修改它以使用帖子网址中的图像网址来工作。
我正在使用这个 php 代码
<?php
$remote_file = 'http://urlimages.com/images.jpg';
$new_width = 100;
$new_height = 100;
list($width, $height) = getimagesize($remote_file);
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($remote_file);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
header('Content-Type: image/jpeg');
imagejpeg($image_p, NULL, 100);
imagedestroy($image_p);
?>