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

สร้างป้ายกำกับ Standard 2 of 5 ด้วย PHP via Java

สร้าง Standard 2 of 5 (อุตสาหกรรม 2 จาก 5) บาร์โค้ด ใน PHP โดยใช้ Aspose.BarCode ฝั่งเซิร์ฟเวอร์สำหรับ PHP via Java API

How to Generate บาร์โค้ด Standard 2 of 5 Using PHP via Java

สร้างบาร์โค้ด บาร์โค้ด Standard 2 of 5 ที่กำหนดเองภายในแอปพลิเคชัน PHP โดยใช้ Aspose.BarCode สำหรับ PHP ผ่าน Java ซึ่งเป็น API บาร์โค้ดที่มีประสิทธิภาพ ปรับขนาดได้ และใช้งานง่ายสำหรับแพลตฟอร์มที่ใช้ Java หากต้องการเปิดไลบรารีบาร์โค้ด ให้ดาวน์โหลดเวอร์ชันล่าสุดจากพอร์ทัล Aspose releases มิฉะนั้น ให้รับแพ็คเกจ aspose/barcode จาก Packagist แล้วฝังลงในโปรเจ็กต์ PHP ของคุณโดยใช้ผู้แต่ง:

Command

{    
    "require": {        
        "asposebarcode/aspose_barcode_java_for_php": "dev-master"    
    }
}

ขั้นตอนในการสร้าง บาร์โค้ด Standard 2 of 5 ใน PHP

Aspose.BarCode ช่วยให้นักพัฒนาสร้างภาพ บาร์โค้ด Standard 2 of 5 ได้ง่ายด้วยโค้ดไม่กี่บรรทัด

  • สร้างตัวอย่างใหม่ของคลาส BarCodeGenerator
  • ระบุ บาร์โค้ด Standard 2 of 5 และประเภทบาร์โค้ดที่เกี่ยวข้องอื่นๆ เป็นพารามิเตอร์ EncodeTypes
  • ตั้งค่าข้อความบาร์โค้ดเป็นพารามิเตอร์ที่สอง
  • ระบุขนาดและตำแหน่งรูปภาพหากจำเป็น
  • เรียกใช้เมธอด BarCodeGenerator.save เพื่อรับรูปภาพ Standard 2 of 5 (อุตสาหกรรม 2 จาก 5) บาร์โค้ด ในรูปแบบที่ต้องการ

ความต้องการของระบบ

API บาร์โค้ด Aspose รองรับโดยแพลตฟอร์มและระบบปฏิบัติการหลักทั้งหมด ก่อนดำเนินการตามตัวอย่างโค้ดด้านล่าง โปรดตรวจสอบว่าคุณได้เปิดใช้งานข้อกำหนดเบื้องต้นต่อไปนี้ในระบบของคุณแล้ว

  • Microsoft Windows, Linux หรือระบบปฏิบัติการใดๆ ที่เข้ากันได้กับสภาพแวดล้อมการพัฒนา PHP
  • PHP/Java Bridge ติดตั้ง
  • FastCGI และ Tomcat Server 8.0 หรือสูงกว่า

Code to be executed - PHP


// Create an instane of the BarcodeGenerator class
$generator = new BarcodeGenerator(EncodeTypes::Standard2of5, "");

// 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()->getCodeTextParameters()->setLocation(CodeLocation::Below);

// Generate and save image
$generator->save("example.png", BarCodeImageFormat::PNG);
Generation result