0

我有一个生成图像的 php 脚本,但我无法将其另存为 jpg... 相反,它具有 .php 文件扩展名

我尝试使用 header('Content-Disposition: attachment; filename=" .jpeg"');

但它不工作

4

2 回答 2

4

您可以使用imagejpeg($image,$filename)

<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  'A Simple Text String', $text_color);

// Save the image as 'simpletext.jpg'
imagejpeg($im, 'simpletext.jpg');

// Free up memory
imagedestroy($im);
?>
于 2013-10-26T09:54:48.110 回答
0

imagejpeg 函数将图像输出到浏览器或文件

于 2013-10-26T10:03:56.423 回答