java生成条形码的问题,哪位高人知道barcode4j生成条形码怎么配置不显示条形码下边的数字。
发布网友
发布时间:2022-04-25 19:43
我来回答
共2个回答
热心网友
时间:2023-10-14 16:28
一维码的话,加上hrp属性:hrp=none,可以把数字栏去除。
src="<%=request.getContextPath()%>/genbc?msg=123456&type=code128&fmt=jpeg&hrp=none"
热心网友
时间:2023-10-14 16:29
Code39Bean bean = new Code39Bean();
// 精细度
final int dpi = 150;
// mole宽度
final double moleWidth = UnitConv.in2mm(1.0f / dpi);
// 配置对象
bean.setMoleWidth(moleWidth);
bean.setWideFactor(3);
bean.doQuietZone(false);
//设置不显示字符
bean.setMsgPosition(HumanReadablePlacement.HRP_NONE);