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

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

أنشئ GS1 Code 128 الرمز الشريطي في Python باستخدام Aspose.BarCode من جانب الخادم لواجهة برمجة تطبيقات Python via Java.

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

لإنشاء صور GS1 Code 128 الرمز الشريطي ، احصل على [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 Code 128 الرمز الشريطي في Python

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

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

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

يتم دعم واجهات برمجة تطبيقات الباركود 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.Code128, "")
        generator.getParameters().getBarcode().getCodeTextParameters().setLocation(CodeLocation.Below)
        generator.getParameters().getBarcode().getXDimension().setMillimeters(2)
        generator.save("example.png", "PNG")

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