Convert png file to ico with PHP

后端 未结 6 1889
忘掉有多难
忘掉有多难 2020-12-09 21:37

I would like to create a PHP script that convert a png file to an ico file. Is it possible to do it just with PHP ? How ?

Thanks !!!

6条回答
  •  猫巷女王i
    2020-12-09 21:47

    There is no easy way to do this directly though php built in libraries. To write an ico file, you will need to write individual bits and bytes by hand to suit the file format. The easiest way would be to use a third party library.

    phpthumb is a good tool for this.

    http://phpthumb.sourceforge.net/

提交回复
热议问题