Is it possible to have the PHP GD library output a .ico file?
Is there a function similar to imagepng?
feedback
|
|
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
| |||
|
feedback
|
|
Why not to use netpbm's ppmtowinicon program? GD -> file(xbm) -> file(ppm) -> file(ico) -> php stream, content-type = image/ico. | |||
|
feedback
|