[Android] 바코드 생성하기
목적 : ZXing 라이브러리 사용하여 바코드 생성하기1. 라이브러리 추가 compile 'com.google.zxing:core:3.3.2'2. 핵심 코드 // 배경 색상 private static final int WHITE = 0xFFFFFFFF; // 바코드 색상 private static final int BLACK = 0xFF000000; private Bitmap encodeAsBitmap(String contents, BarcodeFormat format, int img_width, int img_height) throws WriterException { String contentsToEncode = contents; if (contentsToEncode == null) { return n..