我有一个生成图像的 php 脚本,但我无法将其另存为 jpg... 相反,它具有 .php 文件扩展名
我尝试使用 header('Content-Disposition: attachment; filename=" .jpeg"');
但它不工作
我有一个生成图像的 php 脚本,但我无法将其另存为 jpg... 相反,它具有 .php 文件扩展名
我尝试使用 header('Content-Disposition: attachment; filename=" .jpeg"');
但它不工作
您可以使用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);
?>
imagejpeg 函数将图像输出到浏览器或文件