Package com.itextpdf.text.pdf

Examples of com.itextpdf.text.pdf.BarcodeInter25


   * @param altura, que é a altura (Barheight) que deve ficar a imagem.
   *
   * @return imagem com o código de barras para a string do código
   */
  static Image geraImagemDoCodigoDeBarrasPara(String codigo, float altura) {
    BarcodeInter25 bar = new BarcodeInter25();
    bar.setCode(codigo);
    bar.setExtended(true);
    bar.setTextAlignment(Element.ALIGN_LEFT);
    bar.setBarHeight(altura);
    bar.setFont(null);
    bar.setX(0.73f);
    bar.setN(3);
    return bar.createAwtImage(Color.BLACK, Color.WHITE);
  }
View Full Code Here

TOP

Related Classes of com.itextpdf.text.pdf.BarcodeInter25

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.