參考:zxing設(shè)置條碼兩邊空白(EncodeHintType.MARGIN)無效的分析
閱讀上方源碼解析后得到思路:
白邊的大小: int leftPadding = (outputWidth - (inputWidth * multiple)) / 2;
要讓leftpadding為0,需要讓傳入的width和code.length是整數(shù)倍的關(guān)系,
那么傳入expectWidth和maxWidth,計(jì)算得到一個(gè)沒有白邊的寬度. 用這個(gè)寬度去生成條形碼,一定沒有白邊
高度不影響白邊生成,隨意傳入.
封裝后的代碼:
/** @param context 盡量用activity,以防使用過屏幕適配工具類后application context 和activity里的desplaymetric里的dpidensity不一致
@param expectWidth 期望的寬度
@param maxWidth 最大允許寬度
* @param contents 生成條形碼的內(nèi)容
* @param height
* @return
*/
public static Bitmap getBarCodeWithoutPadding(Context context, int expectWidth,int maxWidth,int height,String contents){
int width = CommonUtils.dp2px(context, expectWidth);
int widthMax = CommonUtils.dp2px(context, maxWidth);
int heightExpect = CommonUtils.dp2px(context, height);
int realWidth = getBarCodeNoPaddingWidth(width,contents,widthMax);
return syncEncodeBarcode(contents, realWidth, heightExpect,0);
}
計(jì)算生成無白邊的寬度:
private static int getBarCodeNoPaddingWidth(int expectWidth,String contents,int maxWidth){
boolean[] code = new Code128Writer(). encode(contents);
int inputWidth = code.length;
XLogUtil.d("code:"+contents+" code.length:"+inputWidth +" expectWidth:"+expectWidth+" maxWidth:"+maxWidth);
//code:210000000000000082 code.length:134 expectWidth:397 maxWidth:435
// Add quiet zone on both sides.
//int fullWidth = inputWidth + 0;
double outputWidth = (double) Math.max(expectWidth, inputWidth);
double multiple = outputWidth / inputWidth;
XLogUtil.d("multiple:"+multiple);
//multiple:2.962686567164179
//優(yōu)先取大的
int returnVal =0;
int ceil = (int) Math.ceil(multiple);
if(inputWidth * ceil <= maxWidth){
returnVal = inputWidth * ceil;
}else {
int floor = (int) Math.floor(multiple);
returnVal = inputWidth * floor;
}
XLogUtil.d("returnVal:"+returnVal);
return returnVal;
}
生成條形碼(code128碼)
代碼來自:BGAQRCode-Android
注意內(nèi)部需要: hints.put(EncodeHintType.MARGIN, 0);
/**
* 同步創(chuàng)建條形碼圖片
*
* @param content 要生成條形碼包含的內(nèi)容
* @param width 條形碼的寬度憾赁,單位px
* @param height 條形碼的高度刹勃,單位px
* @param textSize 字體大小木柬,單位px钧惧,如果等于0則不在底部繪制文字
* @return 返回生成條形的位圖
*
* 白邊問題:
* https://blog.csdn.net/sunshinwong/article/details/50156017
*已知高度,計(jì)算寬度:
*
*/
private static Bitmap syncEncodeBarcode(String content, int width, int height, int textSize) {
if (TextUtils.isEmpty(content)) {
return null;
}
Map<EncodeHintType, Object> hints = new HashMap<>();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
hints.put(EncodeHintType.MARGIN, 0);
try {
BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.CODE_128, width, height, hints);
int[] pixels = new int[width * height];
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
if (bitMatrix.get(x, y)) {
pixels[y * width + x] = 0xff000000;
} else {
pixels[y * width + x] = 0xffffffff;
}
}
}
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
if (textSize > 0) {
bitmap = showContent(bitmap, content, textSize);
}
return bitmap;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
使用時(shí)布局:
注意:
- 文字盡量自己用textview顯示,方便更改字體等效果
- 內(nèi)外布局采用android:layout_width="wrap_content" 不要采用固定寬度,然后再設(shè)置fitXY,會(huì)影響識(shí)別效果.
- 外部周邊不要有灰色邊框之類的,以免影響識(shí)別
<LinearLayout
android:paddingTop="10dp"
android:orientation="vertical"
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/bind_barcode_iv"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="72dp" />
<TextView
android:id="@+id/bind_code_tv"
android:layout_gravity="center_horizontal"
android:text="14522646685845122554"
android:textSize="13sp"
android:textColor="@color/common_color_666666"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>