문제

What is maximum number of colors possible for a picture?

What is the maximum depth?

도움이 되었습니까?

해결책

I'm assuming you're asking about an image using the RGB color model.

There are multiple different color depths used - 8-bit (2^24 possible colors, but only 2^8 may be actually used on the image), 16-bit (2^15 or 2^16 possible colors, depending on the implementation in question), 24-bit (2^24 possible colors) and some devices may very well use 48-bit depth (2^48 possible colors).

Today, 24-bit color is considered standard for most image formats, and is commonly expanded into 32-bit ARGB or RGBA.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top