I am messing around with zxing library 2.2 (is there any documentation??)
What I want to do is:
Take an existing EAN13 string, pass it to the library and get an image to use in an ImageView (or write it to internal storage and then create bitmap for imageView by myself)
Unfortunately MatrixToImageWriter only works in J2SE and not in android (because of awt?) and therefore I can't use it.
I found this article Generate barcode image in Android application
It works fine for Code128, but when i change the BarcodeFormat.CODE_128 to EAN13 I just get an empty image.
Any ideas? Are there other libraries to achieve what I want?
Thanks in advance!