我创建了一张图片,但问题是当我从浏览器保存图片时,它保存为 image.php 但我想将其保存为从 php 发送的自定义名称
<?php
$my_img = imagecreatefromjpeg("images/photo.jpg");
$nw = 400;
$nh = 500;
$img2 = imagecreatetruecolor($nw, $nh);
imagecopyresampled($img2, $my_img, 0, 0, 0, 0, $nw, $nh, imagesx($my_img), imagesy($my_img));
header("Content-type: image/jpeg");
header('filename="Custome Name.jpeg"');
imagejpeg($img2,NULL,60);
imagedestroy($img2);
?>
当用户保存图像时,它必须保存为从服务器发送的名称