PHP GD
ライブラリにファイルを出力させることは可能.ico
ですか?
似たような機能はありimagepng
ますか?
コンテンツタイプを「image/png」に設定し、アイコンを生成するphpスクリプトへのアイコンリンク参照を設定するだけで、それを実行できるはずです。
$img = imagecreatetruecolor(16, 16);
$blue = imagecolorallocate($im, 100, 100, 255);
imagefill($im, 0, 0, $blue);
header('Content-type: image/png');
/*
or if it needs to be the icon content type
header('Content-type: image/ico');
*/
imagepng($im);
imagedestroy($im);
netpbmのppmtowiniconプログラムを使用しないのはなぜですか?GD-> file(xbm)-> file(ppm)-> file(ico)-> phpストリーム、content-type = image/ico。