datamatrix 생성 시 정사각형이 아닌 다른모양으로 생성될경우
itextpdf 에서 지원되지 않는 사이즈라 다시 정의해줘야함. private Image setDatamatrix(String text){ int[] barcodeDimensions = {10, 12, 14, 16, 18, 20, 22, 24, 26, 32, 36, 40, 44, 48, 52, 64, 72, 80, 88, 96, 104, 120, 132, 144}; BarcodeDatamatrix barcode = new BarcodeDatamatrix(); barcode.setOptions(BarcodeDatamatrix.DM_AUTO); Image image = null; try{ // try to generate the barcode, resizing as needed. for (int genera..
2023. 4. 17.