2

这是我正在制作的项目的链接:http: //1-to-n.com/ik/

输入任何内容并按提交很简单,然后它会转到下一页并在图片上显示文本。一切都很好,但是当我右键单击图片并尝试保存它时,扩展名就像“picture.php.jpe”一样奇怪。

图片生成页面代码如下

<?php
//Set the Content Type
header('Content-type: image/jpeg');

// Create Image From Existing File
$jpg_image = imagecreatefromjpeg('vote.jpg');

// Allocate A Color For The Text
$white = imagecolorallocate($jpg_image, 47, 45, 46);

// Set Path to Font File
$font_path = 'MISTRAL.TTF';

// Set Text to Be Printed On Image
$text = $_POST['name'];

// Print Text On Image
imagettftext($jpg_image, 75, 0, 500, 130, $white, $font_path, $text);

// Send Image to Browser
imagejpeg($jpg_image);

// Clear Memory
imagedestroy($jpg_image);
?> 
4

1 回答 1

4

此处的解决方案是Content-Disposition,但您想要什么取决于您希望 UI 如何工作。

您要设置:

header('Content-Disposition: %token%; filename="%name_of_file%"');

在哪里:

  • %name_of_file%是您希望用户看到的文件的名称

  • %token%attachment或之一inline。如果您将其设置为attachment,将立即提示用户下载文件,浏览器将不会像当前那样显示图像。如果设置inline,用户将在浏览器窗格中显示当前的图像,他们需要右键单击 -> 另存为才能保存图像。

在确定要使用的标头之前,您需要决定 UI 的工作方式。

为了清楚起见,这里有几个具体的例子:

// Prompt the user to save the file immediately
header('Content-Disposition: attachment; filename="file.jpg"');

// OR

// Display the image to the user and ask them to manually save it
header('Content-Disposition: inline; filename="file.jpg"');

值得注意的是,IIRC,旧版本的 IE 存在问题,inline因为他们没有注意到建议的文件名。但是,这可以通过name=""Content-Type:. 这是违反标准的,但也相当无害。

于 2013-04-19T15:30:04.547 回答