0

我创建了一张图片,但问题是当我从浏览器保存图片时,它保存为 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);
?>

当用户保存图像时,它必须保存为从服务器发送的名称

4

2 回答 2

1

替换这一行,

header('filename="Custome Name.jpeg"');

header('Content-Disposition: attachment; filename="custom_name.jpg"');
于 2012-06-20T11:59:10.040 回答
0

基于 bsdnoobz 答案,尝试使用内联Content-Disposition

header('Content-Disposition: inline; filename="custom_name.jpg"');

代替 :

header('filename="Custome Name.jpeg"');
于 2012-06-20T12:09:36.577 回答