PNG JPG BMP TIFF SVG
Aspose.BarCode  for Node.js via Java
RM4SCC

Generate RM4SCC Labels with Node.js via Java

Create Royal Mail 4-State Customer Code (RM4SCC) in JavaScript using server-side Aspose.BarCode for Node.js via Java API.

How to Generate Royal Mail 4-State Customer Code (RM4SCC) Using Node.js via Java

To create Royal Mail 4-State Customer Code (RM4SCC) barcodes within Node.js applications, acquire the Aspose.BarCode for Node.js via Java, an advanced, potent, and user-friendly barcode API designed for Java-oriented platforms. You can easily install aspose.barcode for Javascript from NPM:

Command

  > npm i aspose.barcode

Steps to Generate Royal Mail 4-State Customer Code (RM4SCC) in JavaScript

Aspose.BarCode makes it easy for developers to create Royal Mail 4-State Customer Code (RM4SCC) images with few lines of code.

  • Create an instance of BarCodeGenerator class
  • Set Royal Mail 4-State Customer Code (RM4SCC) as the EncodeTypes parameter
  • Define text to encode as the second parameter
  • Determine barcode dimensions and location if needed
  • Call the BarCodeGenerator.save method to get the generated barcode image

System Requirements

Aspose barcode APIs are supported by all major platforms and operating systems. Before executing the code sample below, please check that you have the following prerequisites enabled in your system.

  • Microsoft Windows, Linux, or any OS compatible with Node.js
  • Node.js and Node.js/Java Bridge installed
  • Oracle JDK version 7 or above

Code to be executed - JavaScript


const barcode_ = require("aspose.barcode");
const aspose_barcode = barcode_.AsposeBarcode

let BarcodeGenerator = aspose_barcode.BarcodeGenerator;
let EncodeTypes = aspose_barcode.EncodeTypes;

// Create an instane of the BarcodeGenerator class
let generator = new BarcodeGenerator(EncodeTypes.QR, "");

// Specify the X-dimension 
// the smallest width of the unit of BarCode bars or spaces
generator.getParameters().getBarcode().getXDimension().setMillimeteres(2);

// Set codetext position
generator.getParameters().getBarcode().getCodeTextParameters().setLocation(CodeLocation.Below);

// Generate and save image
generator.save("example.png", aspose_barcode.BarCodeImageFormat.PNG);
Generation result