X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Fsrc%2Fmodules%2Fmod_png%2Fmptr_png.cpp;fp=synfig-core%2Fsrc%2Fmodules%2Fmod_png%2Fmptr_png.cpp;h=d85a59f28506faa84da5f9fdaabcd17a695ba7a6;hb=0c68e3229ed3b21c5245bb2397aaeaff29ae1c85;hp=ec601b5f70f62eb90568a112e79c0fc54ee86ae3;hpb=fb79c2ed5d6bc0c8c2cdb11018a02d61aca1fdb7;p=synfig.git diff --git a/synfig-core/src/modules/mod_png/mptr_png.cpp b/synfig-core/src/modules/mod_png/mptr_png.cpp index ec601b5..d85a59f 100644 --- a/synfig-core/src/modules/mod_png/mptr_png.cpp +++ b/synfig-core/src/modules/mod_png/mptr_png.cpp @@ -309,7 +309,11 @@ png_mptr::png_mptr(const char *file_name) float b=gamma().b_U8_to_F32((unsigned char)png_ptr->palette[row_pointers[y][x]].blue); float a=1.0; if(info_ptr->valid & PNG_INFO_tRNS) +#if (PNG_LIBPNG_VER_MAJOR > 1) || ((PNG_LIBPNG_VER_MAJOR == 1) && (PNG_LIBPNG_VER_MINOR >= 4)) + a = (float)(unsigned char)png_ptr->trans_alpha[row_pointers[y][x]]*(1.0/255.0); +#else a = (float)(unsigned char)png_ptr->trans[row_pointers[y][x]]*(1.0/255.0); +#endif surface_buffer[y][x]=Color( r, g,