class RestPki::PdfHelper

Public Class Methods

new() click to toggle source
# File lib/rest_pki/pdf_helper.rb, line 3
def initialize; end

Public Instance Methods

container() click to toggle source
# File lib/rest_pki/pdf_helper.rb, line 5
def container
    PdfContainerDefinition.new
end
image_element() click to toggle source
# File lib/rest_pki/pdf_helper.rb, line 17
def image_element
    PdfMarkImageElement.new
end
mark() click to toggle source
# File lib/rest_pki/pdf_helper.rb, line 9
def mark
    PdfMark.new
end
qr_code_element() click to toggle source
# File lib/rest_pki/pdf_helper.rb, line 21
def qr_code_element
    PdfMarkQRCodeElement.new
end
text_element() click to toggle source
# File lib/rest_pki/pdf_helper.rb, line 13
def text_element
    PdfMarkTextElement.new
end
text_section(text=nil) click to toggle source
# File lib/rest_pki/pdf_helper.rb, line 25
def text_section(text=nil)
    PdfTextSection.new(text)
end