사용이 setX(1f);
위한
public class BarCodeTest {
public static void main(String[] a) throws FileNotFoundException, DocumentException {
Barcode128 code128 = new Barcode128();
code128.setCode("P662130002");
code128.setBarHeight(80f); // great! but what about width???
code128.setX(1f);
Document document = new Document();
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("hello.pdf"));
document.open();
PdfContentByte cb = writer.getDirectContent();
Image barcodeimage = code128.createImageWithBarcode(cb, Color.BLACK, Color.WHITE);
document.add(barcodeimage);
document.close();
}
}
사용 최소값의 차이를 볼 수있는 메소드 서명
public void setX(float x)
Sets the minimum bar width.
Parameters:
x - the minimum bar width
EDIT
code128.setX(10.0f) ;// Sets the minimum bar width.
바코드
너비를 설정한다.
나는 이것을 시도했지만 작동하지 않았다. code128.setX (50f), code128.setX (300f) 및 code128.setX (500f)도 여전히 같은 결과입니다 .. – Firzen
내 편집 anwser를 참조하십시오. 나는 그것이 폭이 변화하고 있음을 시험했다. – NPKR