PNG JPG BMP TIFF SVG
Aspose.BarCode  for Node.js via Java
Standard 2 of 5

إنشاء ملصقات Standard 2 of 5 باستخدام Node.js via Java

أنشئ Standard 2 of 5 (صناعي 2 من 5) رمز شريطي في JavaScript باستخدام Aspose.BarCode من جانب الخادم لواجهة برمجة تطبيقات Node.js via Java.

How to Generate Standard 2 of 5 الرمز الشريطي Using Node.js via Java

لإنشاء رموز شريطية Standard 2 of 5 الرمز الشريطي داخل تطبيقات Node.js ، احصل على Aspose.BarCode لـ Node.js عبر Java ، واجهة برمجة تطبيقات باركود متقدمة وفعالة وسهلة الاستخدام مصممة للأنظمة الأساسية الموجهة لجافا. يمكنك بسهولة تثبيت [aspose.barcode] ( https://releases.aspose.com/barcode/nodejs/ ) لـ Javascript من NPM:

Command

  > npm i aspose.barcode

خطوات إنشاء Standard 2 of 5 الرمز الشريطي في JavaScript

يسهّل Aspose.BarCode للمطورين إنشاء صور Standard 2 of 5 الرمز الشريطي ببضعة أسطر من التعليمات البرمجية.

  • إنشاء مثيل لفئة BarCodeGenerator
  • قم بتعيين Standard 2 of 5 الرمز الشريطي كمعامل EncodeTypes
  • حدد النص الذي سيتم ترميزه كمعامل ثاني
  • تحديد أبعاد وموقع الرمز الشريطي إذا لزم الأمر
  • اتصل بطريقة BarCodeGenerator.save للحصول على صورة الرمز الشريطي التي تم إنشاؤها

متطلبات النظام

يتم دعم واجهات برمجة تطبيقات الباركود Aspose من قبل جميع المنصات وأنظمة التشغيل الرئيسية. قبل تنفيذ نموذج التعليمات البرمجية أدناه ، يرجى التحقق من تمكين المتطلبات الأساسية التالية في نظامك.

  • Microsoft Windows أو Linux أو أي نظام تشغيل متوافق مع Node.js
  • تثبيت Node.js و Node.js / Java Bridge
  • Oracle JDK الإصدار 7 أو أعلى

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