PNG JPG BMP TIFF SVG
Aspose.BarCode  for Python via Java
GS1 DataBar

إنشاء ملصقات GS1 DataBar باستخدام Python via Java

أنشئ GS1 DataBar (الرمز الشريطي متعدد الاتجاهات والمكدس متعدد الاتجاهات والموسّع والمكدس والمقطع) في Python باستخدام Aspose.BarCode من جانب الخادم لواجهة برمجة تطبيقات Python via Java.

How to Generate GS1 DataBar الرمز الشريطي Using Python via Java

لإنشاء صور GS1 DataBar الرمز الشريطي ، احصل على [Aspose.BarCode for Python via Java] ( https://products.aspose.com/barcode/python-java/ ) واجهة برمجة تطبيقات غنية بالميزات وقوية وسهلة الاستخدام -استخدام مكتبة الباركود للتطبيقات المستندة إلى Python. احصل على أحدث إصدار مباشرةً من بوابة [Aspose Release] ( https://releases.aspose.com/barcode/python-java/ ) أو ثبّت “aspose-barcode” من النقطة باستخدام الأمر التالي:

Command

  pip install aspose-barcode 

خطوات إنشاء GS1 DataBar الرمز الشريطي في Python

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

  • أنشئ كائنًا جديدًا من فئة BarCodeGenerator
  • حدد أنواع الرمز الشريطي المطلوبة كمعامل EncodeTypes
  • أدخل نص الإدخال كمعامل ثاني
  • اتصل بطريقة BarCodeGenerator.save للحصول على الصورة GS1 DataBar (الرمز الشريطي متعدد الاتجاهات والمكدس متعدد الاتجاهات والموسّع والمكدس والمقطع) التي تم إنشاؤها

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

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

  • Microsoft Windows أو Linux أو أي نظام تشغيل متوافق مع بيئات تطوير Python
  • Java 8 أو أعلى
  • Python 3.6 أو أعلى

Code to be executed - Python


from asposebarcode import Generation

class BarcodeGeneratorExamples():
    def generateBarcodeImageExample(self):
        generator = Generation.BarcodeGenerator(Generation.EncodeTypes.Databar, "")
        generator.getParameters().getBarcode().getCodeTextParameters().setLocation(CodeLocation.Below)
        generator.getParameters().getBarcode().getXDimension().setMillimeters(2)
        generator.save("example.png", "PNG")

barcodeGeneratorExamples = BarcodeGeneratorExamples()
barcodeGeneratorExamples.generateBarcodeImage()
Generation result