为什么 Volley ImageRequest return 位图,而不是其他图像文件格式?

Why does Volley ImageRequest return bitmaps, and not other image file formats?

我读了这个here

... ImageRequest – this gets an image at a URL, returning a Bitmap...

大多数图像格式都是为了存储目的而压缩图像数据的一种方式。当要将图像绘制到屏幕上时,它需要是像素的直接映射,不涉及 compression/decompression。这就是位图格式提供的..所有不涉及压缩的像素数据。