php,fileopen以及在url中读写

时间:2013-03-26 06:56:28

标签: php

我在html中打开一个图像,我想通过输入像localhost / changimage.php这样的URL来调整它的大小?width = 40

这是我打开文件并阅读图片的代码:changimage.php

<?php

$remoteImage = "/var/www/html/zahir/images/bike.jpeg";

$imginfo = getimagesize($remoteImage);

header("Content-type: ".$imginfo['mime']);
//header("Content-Length

readfile($remoteImage);


?>

我不知道怎么做..

0 个答案:

没有答案