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.
图片的最大颜色数是多少?
最大深度是多少?
我假设您正在询问使用 RGB 颜色模型的图像。
使用了多种不同的颜色深度 - 8 位(2^24 种可能的颜色,但实际上图像上可能仅使用 2^8 种),16 位(2^15 或 2^16 种可能的颜色,具体取决于实现)有问题),24 位(2^24 种可能的颜色)和某些设备可能很好地使用 48 位深度(2^48 种可能的颜色)。
今天,24 位颜色被认为是大多数图像格式的标准,并且通常扩展为 32 位 ARGB 或 RGBA。