Libpng, Palette png with alpha or not?

纵饮孤独 提交于 2019-11-26 23:16:21

PNG supports transparency in two (or three) quite different ways:

  1. Truecolor or grayscale images with a separated alpha channel (RGBA or GA)

  2. Transparency extra info in the (optional) tRNS chunk . Which has two different flavors:

    2a. For indexed images: the tRNS chunk specifies a transparency value ("alpha") for one, several or all the palette indexes.

    2b. For truecolor or grayscale images: the tRNS chunk specifies a single color value (RGB or Gray) that should be considered as fully transparent.

If you are interested in case 2a, and if you are using libpng, you should look at the function png_get_tRNS()

this may help:

if (color_type == PNG_COLOR_TYPE_RGBA || color_type == PNG_COLOR_TYPE_GA)
    *alphaFlag = true;
else
{
    png_bytep trans_alpha = NULL;
    int num_trans = 0;
    png_color_16p trans_color = NULL;

    png_get_tRNS(png_ptr, info_ptr, &trans_alpha, &num_trans, &trans_color);
    if (trans_alpha != NULL)
        *alphaFlag = true;
    else
        *alphaFlag = false;
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!