Exemplo n.º 1
0
        public async Task <IActionResult> GerarPdf([FromServices] ACBrBoleto boleto, [FromServices] IWebHostEnvironment hostingEnvironment, IFormFile iniBoleto)
        {
            if (!iniBoleto.FileName.EndsWith(".ini"))
            {
                return(BadRequest());
            }

            var codigo      = Guid.NewGuid();
            var path        = Path.GetTempPath();
            var nomeArquivo = $@"{codigo}.pdf";

            boleto.Config.Impressao.MostrarPreview   = false;
            boleto.Config.Impressao.MostrarProgresso = false;
            boleto.Config.Impressao.MostrarSetup     = false;
            boleto.Config.Impressao.DirLogo          = Path.Combine(hostingEnvironment.ContentRootPath, "Logos");

            boleto.Config.Impressao.NomeArquivo = Path.Combine(path, nomeArquivo);

            using var stream = new StreamReader(iniBoleto.OpenReadStream());
            boleto.IncluirTitulos(await stream.ReadToEndAsync(), BoletoTpSaida.PDF);

            var fs = new FileStream(Path.Combine(path, nomeArquivo), FileMode.Open);

            return(File(fs, "application/pdf", nomeArquivo));
        }
Exemplo n.º 2
0
        private void BtnIncluirTitulo_Click(object sender, EventArgs e)
        {
            var iniPath = Helpers.OpenFile("Titulo (*.ini)|*.ini|Todo os Arquivos (*.*)|*.*");

            if (string.IsNullOrEmpty(iniPath))
            {
                return;
            }

            boleto.IncluirTitulos(iniPath);
        }