How can you determine the alpha of a pixel using readpixel or readpixel fast?
I have code to extract the RGB from a pixel value, but how about Alpha?
I have code to extract the RGB from a pixel value, but how about Alpha?
Function Red(argb) Return (argb Shr 16) And $ff End Function Function Green(argb) Return (argb Shr 8) And $ff End Function Function Blue(argb) Return argb And $ff End Function