Table of Content
通过前面的学习,已经可以成功在浏览器上输出图像,那么问题来了,如何保输出为文件呢?
<?php
$img = imagecreatetruecolor(100, 100);
$red = imagecolorallocate($img, 0xFF, 0x00, 0x00);
imagestring($img, 5, 0, 0, "Hello, world", $red);
header("content-type: image/png");
$filenamePNG = "myImg.png";
// 输出 PNG 文件,额外设置文件名
imagepng($img, $filenamePNG);
$filenameJPG = 'myImg.jpg';
// 输出 JPG 文件,额外设置文件名、压缩质量
imagejpeg($img, $filenameJPG, 90);
imagedestroy($img);
?>