代碼中生成的文件 只能在網(wǎng)頁(yè)瀏覽器上查看嗎?
$img = imagecreatetruecolor(100, 100);
$red = imagecolorallocate($img, 0xFF, 0x00, 0x00);
imagestring($img, 5, 0, 0, "Hello world", $red);
$filename = 'img.png';
//在這里將圖片保存到$filename文件中
imagepng($img,$filename);
imagedestroy($img);
if (file_exists($filename)) {
? ? echo '文件保存成功';
}
這里生成了一張png格式的照片 但是我能在本地找到他嗎?
2015-09-23
哈哈 ?我自己又看到了 ?就在Demo文件夾里面就有這個(gè)圖像文件