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

Aztec लेबल Python via Java के साथ जनरेट करें

Python via Java API के लिए सर्वर-साइड Aspose.BarCode का उपयोग करके Python में Aztec कोड बनाएं।

How to Generate Aztec कोड Using Python via Java

Aztec कोड इमेज बनाने के लिए, जावा के ज़रिए पायथन के लिए Aspose.BarCode एपीआई पाएं, जो सुविधाओं से भरपूर, शक्तिशाली और इस्तेमाल में आसान है -पायथन आधारित अनुप्रयोगों के लिए बारकोड लाइब्रेरी का उपयोग करें। Apose release पोर्टल से सीधे नवीनतम संस्करण प्राप्त करें या निम्नलिखित कमांड के साथ पाइप से ‘aspose-barcode’ स्थापित करें:

Command

  pip install aspose-barcode 

Python में Aztec कोड जनरेट करने के चरण

Aspose.BarCode डेवलपर्स के लिए कोड की कुछ पंक्तियों के साथ Aztec कोड छवियां बनाना आसान बनाता है।

  • BarCodeGenerator वर्ग का एक नया ऑब्जेक्ट बनाएं
  • इच्छित बारकोड प्रकारों को EncodeTypes पैरामीटर के रूप में निर्धारित करें
  • दूसरे पैरामीटर के रूप में इनपुट टेक्स्ट डालें
  • उत्पन्न Aztec कोड छवि प्राप्त करने के लिए BarCodeGenerator.save पद्धति को कॉल करें

सिस्टम आवश्यकताएं

Aspose बारकोड एपीआई सभी प्रमुख प्लेटफॉर्म और ऑपरेटिंग सिस्टम द्वारा समर्थित हैं। नीचे दिए गए कोड नमूने को निष्पादित करने से पहले, कृपया जांच लें कि आपके सिस्टम में निम्नलिखित पूर्वापेक्षाएँ सक्षम हैं।

  • Microsoft Windows, Linux, या Python विकास वातावरण के साथ संगत कोई भी OS
  • Java 8 या ऊपर
  • Python 3.6 या ऊपर

Code to be executed - Python


from asposebarcode import Generation

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

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