发布网友
共2个回答
热心网友
一维码的话,加上hrp属性:hrp=none,可以把数字栏去除。
src="<%=request.getContextPath()%>/genbc?msg=123456&type=code128&fmt=jpeg&hrp=none"
热心网友
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);