* @throws WriterException
*/
public BarcodeQRCode(String content, int width, int height, Map<EncodeHintType,Object> hints) {
try {
QRCodeWriter qc = new QRCodeWriter();
bm = qc.encode(content, width, height, hints);
}
catch (WriterException ex) {
throw new ExceptionConverter(ex);
}
}