return dataMatrix;
}
if (BARCODE_USPSINTELLIGENTMAIL.equals(type))
{
final USPSIntelligentMail dataMatrix = new USPSIntelligentMail();
if (showText == false)
{
dataMatrix.getUSPSIntelligentMailBean().setMsgPosition(HumanReadablePlacement.HRP_NONE);
}
if (barHeight != null)
{
dataMatrix.getUSPSIntelligentMailBean().setBarHeight(UnitConv.pt2mm(barHeight.doubleValue()));
}
dataMatrix.getUSPSIntelligentMailBean().setChecksumMode(checksum ? ChecksumMode.CP_AUTO : ChecksumMode.CP_IGNORE);
return dataMatrix;
}
return null;
}