Module: Asposebarcodejava::CustomizeBarcodeImageResolution

Defined in:
lib/asposebarcodejava/BarcodeImage/customizebarcodeimageresolution.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
# File 'lib/asposebarcodejava/BarcodeImage/customizebarcodeimageresolution.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 the Code text for the barcode
    bb.setCodeText("1234567")

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

    # Create an instance of resolution
    bb.setResolution(Rjb::import('com.aspose.barcode.Resolution').new(200,400,Rjb::import('com.aspose.barcode.ResolutionMode').Graphics))

    bb.save(data_dir + "CustomizeBarcodeImageResolution.jpg")

    # Display Status.
    puts "Customized Barcode Image Resolution, please check the output file."
end