Module: Asposepdfjava::AddHtml

Defined in:
lib/asposepdfjava/Text/addhtml.rb

Instance Method Summary collapse

Instance Method Details

#initializeObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/asposepdfjava/Text/addhtml.rb', line 3

def initialize()
	# The path to the documents directory.
    data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
            
    # Instantiate Document object
    doc = Rjb::import('com.aspose.pdf.Document').new

    # Add a page to pages collection of PDF file
    page = doc.getPages().add()
    
    # Instantiate HtmlFragment with HTML contents
    title = Rjb::import('com.aspose.pdf.HtmlFragment').new("<fontsize=10><b><i>Table</i></b></fontsize>")
    
    # set MarginInfo for margin details
    margin = Rjb::import('com.aspose.pdf.MarginInfo').new
    margin.setBottom(10)
    margin.setTop(200)
    
    # Set margin information
    title.setMargin(margin)
    
    # Add HTML Fragment to paragraphs collection of page
    page.getParagraphs().add(title)
    
    # Save PDF file
    doc.save(data_dir + "html.output.pdf")

    puts "HTML added successfully"
end