dsfb20227 2013-01-18 21:46 采纳率: 0%
浏览 33
已采纳

imagecolorset不适用于alpha值

The manual here states that the PNG function imagecolorset() accepts a red, green, blue and alpha value, however when I specify an alpha value PHP gives me the error:

Warning: imagecolorset() expects exactly 5 parameters, 6 given

This confuses me: The other functions that add colors to the palette like imagecolorallocate() support the alpha value correctly, and even for this function the manual states that it is supposed to.

Any ideas what could be wrong?

  • 写回答

1条回答 默认 最新

  • duanchendu69495 2013-01-18 21:48
    关注

    Alpha support (and its associated parameter) was added in v5.4.0, as it clearly states in the function's manpage changelog: http://php.net/imagecolorset#refsect1-function.imagecolorset-changelog

    You'll have to upgrade your PHP version, or not use alpha.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?