标签: android templates bitmap
在我的代码中,我有一个方法grabFingerprint();此方法返回byte[] array。 字节数组表示ISO FMC COMPACT格式的指纹数据,或者为null。 (ISO_19794_2_2005)
grabFingerprint()
byte[] array
ISO FMC COMPACT
现在我想将此数组转换为位图。但标准转换会导致应用程序崩溃而不会出现错误。
Bitmap bmp = BitmapFactory.decodeByteArray(iso, 0, iso.length);
任何帮助将不胜感激..