我需要能夠修改 jpeg 或 png 文件的內(nèi)容,并且能夠成功地將圖像分解為字節(jié),反之亦然。唯一的問題是我不知道 jpeg 文件頭或 png 文件頭有多少字節(jié)組成。對(duì)于像我這樣的初學(xué)者來說,大多數(shù)網(wǎng)站上的信息都非常模糊和/或信息量太大。如果有人可以提供一個(gè)簡單的答案,告訴我需要跳過多少字節(jié)才能通過標(biāo)題,以及如何識(shí)別圖像是 jpeg 圖像還是 png 圖像以及我可能不會(huì)的任何其他重要信息,我真的很感激都提到過。我在下面添加了我用來從圖像中提取字節(jié)并將圖像轉(zhuǎn)換為字節(jié)的代碼。注意:此代碼適用于 android 操作系統(tǒng)用于將圖像轉(zhuǎn)換為字節(jié)的代碼:public byte[] imgtobytes(File f){ FileInputStream fis=null; try { fis = new FileInputStream(f); } catch(Exception e) {} Bitmap bm = BitmapFactory.decodeStream(fis); ByteArrayOutputStream baos = new ByteArrayOutputStream(); bm.compress(Bitmap.CompressFormat.JPEG, 100 , baos); byte[] b = baos.toByteArray(); return b;}用于將字節(jié)轉(zhuǎn)換為圖像并將其顯示在圖像視圖上的代碼:public void bytestoimg(byte[] bytearray, ImageView imgv){ Bitmap bmp = BitmapFactory.decodeByteArray(bytearray, 0, bytearray.length); imgv.setImageBitmap(Bitmap.createScaledBitmap(bmp, imgv.getWidth(), imgv.getHeight(), false));}
添加回答
舉報(bào)
0/150
提交
取消