Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个像素图,它是一个简单的二维像素数组,我使用 FreeType 渲染(或在某些情况下使用 libpng 读取)。
是否有任何简单的算法可以让我用我选择的颜色来着色这个像素数据?我只需要更改颜色,alpha 值应该保持原样。此外,如果这仅适用于全白像素,那就没问题了。
将其转换为 HSV(http://en.wikipedia.org/wiki/HSL_and_HSV),更改色调并将其转换回 RGB?