Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Colorize any Part of the Barcode Image using Aspose.Barcode Java for Ruby, simply invoke SetBarcodeImageColor module. Here you can see example code.
Ruby Code
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
\# Instantiate barcode object
bb = Rjb::import('com.aspose.barcode.BarCodeBuilder').new
color = Rjb::import('java.awt.Color')
\# Set the background color of the barcode
bb.setBackColor(color.YELLOW)
\# Set the foreground color of the barcode
bb.setForeColor(color.BLUE)
\# Set border's color
bb.setBorderColor(color.RED)
\# Set the code text's color
bb.setCodeTextColor(color.RED)
\# Caption's color
bb.getCaptionAbove().setForeColor(color.darkGray)
bb.getCaptionBelow().setForeColor(color.CYAN)
bb.save(data_dir + "color.jpg")
\# Display Status.
puts "Applied color to barcode image, please check the output file."
Download Colorize any Part of the Barcode Image (Aspose.BarCode) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.