将输入流转换为位图
2022-09-01 00:32:45
我在将输入流从 Web 转换为位图时遇到问题。仅当输入图像类型.BMP(位图)时,才会出现问题。在这种情况下:bitmapFactory.decodeStream 返回 null。
任何提示如何解决此问题或我应该在哪里继续调试?
平台: 安卓 (蜂窝)
URLConnection conn = url.openConnection();
conn.connect();
inputStream = conn.getInputStream();
bufferedInputStream = new BufferedInputStream(inputStream);
bmp = BitmapFactory.decodeStream(bufferedInputStream);