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.
我有个问题:
假设传输速率为 0.1mb/秒,加载分辨率为 512x512 的像素图需要多少时间。
任何帮助都会得到帮助
512 * 512 = 262144 像素
假设每种颜色 RGB 8 位,262144 * 3 = 786432 字节或 0.75 mb
所以大约需要 7.5 秒……理想情况下。
加入一个 Alpha 通道,它会持续 10 秒。
请注意,计算是针对 RAW 像素图数据的。如果是压缩的,如JPEG或PNG,文件会更小,但最终大小将取决于图像的内容,因此无法提前告知。