Module: Asposebarcodejava::SetBarsHeight

Defined in:
lib/asposebarcodejava/Barcode/setbarsheight.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
# File 'lib/asposebarcodejava/Barcode/setbarsheight.rb', line 3

def initialize()
    data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
            
    # Instantiate barcode object
    bb = Rjb::import('com.aspose.barcode.BarCodeBuilder').new

    # Set up code text (data to be encoded)
    bb.setCodeText("1234567")

    # Set the symbology type to Code128
    bb.setSymbologyType(Rjb::import('com.aspose.barcode.Symbology').Code128)

    # Set the bar height to be 3 milimeter
    bb.setBarHeight(3.0)
    bb.save(data_dir + "barcode3.jpg")

    # Set the bar height to be 7 milimeter
    bb.setBarHeight(7.0)
    bb.save(data_dir + "barcode7.jpg")

    # Set the bar height to be 11 milimeter
    bb.setBarHeight(11.0)
    bb.save(data_dir + "barcode11.jpg")

    # Display Status.
    puts "Barcode with different heights has been created successfully."
end