////////////////////////////////////////////////////////////////////////// // Copyright 2001-2015 Aspose Pty Ltd. All Rights Reserved. // // This file is part of Aspose.BarCode. The source code in this file // is only intended as a supplement to the documentation, and is provided // "as is", without warranty of any kind, either expressed or implied. ////////////////////////////////////////////////////////////////////////// package com.aspose.barcode.examples.barcode_image.utility_features; import com.aspose.barcode.BarCodeBuilder; import com.aspose.barcode.Resolution; import com.aspose.barcode.ResolutionMode; import com.aspose.barcode.Symbology; import com.aspose.barcode.examples.Utils; public class BarcodeImageResolution { public static void main(String[] args) { // The path to the resource directory. String dataDir = Utils.getDataDir(BarcodeImageResolution.class) + "BarcodeImage/UtilityFeatures/"; //Instantiate barcode object BarCodeBuilder bb = new BarCodeBuilder(); //Set the Code text for the barcode bb.setCodeText("1234567"); //Set the symbology type to code128 bb.setSymbologyType(Symbology.Code128); //Create an instance of resolution and apply on the barcode image with //customized resolution settings bb.setResolution(new Resolution(200f, 400f, ResolutionMode.Customized)); // Save the image bb.save(dataDir + "barcode-image-resolution.jpg"); } }