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

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

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

How to Generate Singapore Post الرمز الشريطي Using Python via Java

لإنشاء صور Singapore Post الرمز الشريطي ، احصل على [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 

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

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

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

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

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

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