3

ZXing 库的Writer.encode()函数返回一个BitMatrix对象。如何将它转换为标准的 javaBitmap对象,以便它可以用作ImageViewAndroid 中的源?

4

1 回答 1

-4
writeToFile(BitMatrix matrix, String format, File file)

thsi 方法会将BitMatrix写入文件,现在您可以使用解码此文件

BitmapFactory.decodeFile(newly created file name with path)

这将返回一个位图

有关更多详细信息,请参阅此链接

于 2012-04-10T14:42:01.190 回答