up vote 0 down vote favorite
share [g+] share [fb]

Is it possible to have the PHP GD library output a .ico file?

Is there a function similar to imagepng?

link|improve this question

If you're doing this for a favicon, outputting as a PNG will probably work fine =) – mkoistinen Sep 7 '10 at 23:47
SO has already covered this, looks like: stackoverflow.com/questions/2628114/… – mkoistinen Sep 7 '10 at 23:49
feedback

2 Answers

up vote 1 down vote accepted

you should be able to do it simply by setting the content type to 'image/png' and setting the the icon link ref to the php script that generates the icon

    $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);
link|improve this answer
feedback

Why not to use netpbm's ppmtowinicon program? GD -> file(xbm) -> file(ppm) -> file(ico) -> php stream, content-type = image/ico.

link|improve this answer
Please explain... – Mark Sep 8 '10 at 0:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.