Examples of toPDF()


Examples of br.com.caelum.stella.boleto.transformer.BoletoGenerator.toPDF()

    // Para gerar um boleto em PNG
    gerador.toPNG("BancoDoBrasil.png");

    // Para gerar um array de bytes a partir de um PDF
    @SuppressWarnings("unused")
    byte[] bPDF = gerador.toPDF();

    // Para gerar um array de bytes a partir de um PNG
    @SuppressWarnings("unused")
    byte[] bPNG = gerador.toPNG();
  }
View Full Code Here

Examples of br.com.caelum.stella.boleto.transformer.BoletoGenerator.toPDF()

    public static void main(String[] args) {
        BoletoGenerator gerador = new BoletoGenerator(getBoletoBancoDoBrasil(),
                getBoletoBradesco(), getBoletoBancoDoBrasil());

        // Para gerar um boleto em PDF
        gerador.toPDF("Boletos.pdf");
    }

    private static Boleto getBoletoBancoDoBrasil() {
        Datas datas = Datas.newDatas()
            .withDocumento(1, 5, 2008)
View Full Code Here

Examples of com.log4ic.utils.convert.office.OfficeConverter.toPDF()

        File in = this.getInFile();
        String out = this.getOutputPath();
        File dir = DocViewerConverter.deploy(in, out);
        OfficeConverter converter = new OfficeConverter();
        try {
            in = converter.toPDF(in, dir.getPath());
            DocViewer.addConvertWorker(new PDFConvertWorker(this.getId(), in, out, splitePage));
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.