I want to generate a barcode image using zxing library (or another good library if you know).
I generate the barcode image using:
Intent intent = new Intent("com.google.zxing.client.android.ENCODE");
intent.putExtra("ENCODE_FORMAT", "CODE_128");
intent.putExtra("ENCODE_DATA", objectsId.get(position));
startActivity(intent);
how can i get the barcode image as bitmap or the path to the barcode image?
currently i am using the zxing library