Buscar..


Ejemplo avanzado

Este es el enfoque avanzado con el ejemplo.

class FundsController < ApplicationController

  def index
    @funds = Fund.all_funds(current_user)
  end

  def show
    @fund = Fund.find(params[:id])
    respond_to do |format|
      format.html
      format.pdf do
        pdf = FundsPdf.new(@fund, view_context)
        send_data pdf.render, filename: 
        "fund_#{@fund.created_at.strftime("%d/%m/%Y")}.pdf",
        type: "application/pdf"
      end
    end
  end
end  

Por encima del código tenemos esta línea FundsPdf.new(@fund, view_context) . Aquí estamos inicializando la clase FundsPdf con la instancia de @fund y view_context para usar los métodos de ayuda en FundsPdf. FundsPdf se vería así

 class FundPdf < Prawn::Document

  def initialize(fund, view)
    super()
    @fund = fund
    @view = view
    upper_half
    lower_half
  end

  def upper_half
    logopath =  "#{Rails.root}/app/assets/images/logo.png"
    image logopath, :width => 197, :height => 91
    move_down 10
    draw_text "Receipt", :at => [220, 575], size: 22
    move_down 80
    text "Hello #{@invoice.customer.profile.first_name.capitalize},"
  end

  def thanks_message
    move_down 15
    text "Thank you for your order.Print this receipt as 
    confirmation of your order.",
    :indent_paragraphs => 40, :size => 13
  end
end 

Este es uno de los mejores métodos para generar PDF con clases usando la gema Prawn.

Ejemplo básico

Debe agregar Gem y PDF MIME: Escriba dentro de mime_types.rb, ya que debemos notificar a los rieles sobre el tipo de mime PDF.

Después de eso podemos generar Pdf con Prawn en las siguientes formas básicas

Esta es la tarea básica.

pdf = Prawn::Document.new
pdf.text "Hello World"
pdf.render_file "assignment.pdf"

Podemos hacerlo con Implícito Bloque.

Prawn::Document.generate("implicit.pdf") do
 text "Hello World"
end

Con bloque explicito

Prawn::Document.generate("explicit.pdf") do |pdf|
 pdf.text "Hello World"
end


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow