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

Tạo nhãn Singapore Post với Node.js via Java

Tạo mã vạch Singapore Post trong JavaScript bằng API Aspose.BarCode phía máy chủ cho Node.js via Java API.

How to Generate mã vạch Singapore Post Using Node.js via Java

Để tạo mã vạch mã vạch Singapore Post trong các ứng dụng Node.js, hãy mua Aspose.BarCode cho Node.js qua Java, một API mã vạch tiên tiến, hiệu quả và thân thiện với người dùng được thiết kế cho các nền tảng hướng Java. Bạn có thể dễ dàng cài đặt aspose.barcode cho Javascript từ NPM:

Command

  > npm i aspose.barcode

Các bước để tạo mã vạch Singapore Post trong JavaScript

Aspose.BarCode giúp các nhà phát triển dễ dàng tạo hình ảnh mã vạch Singapore Post với một vài dòng mã.

  • Tạo một phiên bản của lớp BarCodeGenerator
  • Đặt mã vạch Singapore Post làm tham số EncodeTypes
  • Xác định văn bản cần mã hóa làm tham số thứ hai
  • Xác định kích thước và vị trí mã vạch nếu cần
  • Gọi phương thức BarCodeGenerator.save để lấy hình ảnh mã vạch đã tạo

yêu cầu hệ thống

API mã vạch Aspose được hỗ trợ bởi tất cả các nền tảng và hệ điều hành chính. Trước khi thực thi mẫu mã bên dưới, vui lòng kiểm tra xem bạn đã bật các điều kiện tiên quyết sau trong hệ thống của mình chưa.

  • Microsoft Windows, Linux hoặc bất kỳ HĐH nào tương thích với Node.js
  • Đã cài đặt Node.js và Node.js/Java Bridge
  • Oracle JDK phiên bản 7 trở lên

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