RGBA format HEX into RGB format HEX? PHP

前端 未结 4 711
攒了一身酷
攒了一身酷 2021-01-16 18:02

I want to convert back and forth between RGBA-formated HEX colors (like0xFF0000FF) and RGB-formated HEX colors (like 0xFF0000) in PHP.

How

4条回答
  •  无人共我
    2021-01-16 19:07

    RGBA -> RGB should be simple, as it's just cutting off the last two digits. The other direction is impossible, as alpha information isn't encoded in RGB.

提交回复
热议问题