HTML で画像を開いていますが、localhost/changimage.php?width=40 のような URL を入力してサイズを変更したいと考えています。
ファイルを開いて画像を読み取るコードは次のとおりです:changimage.php
<?php
$remoteImage = "/var/www/html/zahir/images/bike.jpeg";
$imginfo = getimagesize($remoteImage);
header("Content-type: ".$imginfo['mime']);
//header("Content-Length
readfile($remoteImage);
?>
私はそれを行う方法がわかりません..