Module: Asposebarcodejava::PatchCode

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

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

    # Set Symbology type
    builder.setSymbologyType(Rjb::import('com.aspose.barcode.Symbology').PatchCode)
    
    # Set code text
    builder.setCodeText("Patch T")

    # Save the image to your system and set its image format to Jpeg
    builder.save(data_dir + "PatchCode.jpg")

    # Display Status
    puts "Generated PatchCode Successfully."
end