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.
如果我知道图像的像素高度和宽度,我可以计算字节数组的大小吗?还是信息不足?
我需要这个的原因是使用servingUrl 从blobstore 获取图像。因为我(动态地)知道期望图像的视图的大小,所以我想用它来告诉 blobstore 如何调整图像大小以节省内存等。据我所知,blobstore 是什么大小信息,而不是维度。
您可以像这样估计字节数组的大小:
size = width * height * 3.
3 是用于存储一个像素的典型字节数 = 没有 Alpha 通道。
如果像素有 alpha 通道,它将使用额外的 1 个字节,即总共 4 个字节。