Vector PDF output के लिए DataMatrix barcode API
Product, medical, retail और warehouse workflows के लिए PDF labels और documents में DataMatrix और GS1 DataMatrix barcodes render करें.
/api/v1/pdf/render Product labels, warehouse labels या documents के अंदर DataMatrix या GS1 DataMatrix payloads को vector PDF barcode elements के रूप में render करें, जबकि encoded business payload आपका system own करे.
यह API कब इस्तेमाल करें
- आपको PDF document या label में 2D DataMatrix barcode चाहिए.
- आपकी application encoded identifier, lot, serial या product payload पहले से जानती है.
- Template Render से repeated DataMatrix label layouts चाहिए.
- PDF में embedded raster images के बजाय vector barcode output चाहिए.
यह क्या replace नहीं करता
- आपको gPdf से regulatory certification, device labeling approval या GS1 certification चाहिए.
- आपको gPdf से business identifiers generate कराना या external registries check कराना है.
- आपको scanner fleet management चाहिए.
कौन सा endpoint call करें
/api/v1/pdf/render
JSON Render इस workflow का default path है।
/api/v1/template-render
जब workflow को related API path, template contract या capabilities lookup चाहिए, तब इसका उपयोग करें।
Minimal request
POST /api/v1/pdf/render - product label पर GS1 DataMatrix barcode.
{
"pages": [
{
"size": "label_100_100",
"elements": [
{
"type": "barcode",
"format": "gs1-datamatrix",
"content": "(01)09506000134352(10)LOT26A",
"x": 10,
"y": 14,
"width": 34,
"height": 34
},
{
"type": "text",
"x": 10,
"y": 56,
"content": "GTIN 09506000134352\nLOT LOT26A",
"style": { "font_size": 9, "font_family": "NotoSans-Regular" }
}
]
}
]
}
gPdf क्या handle करता है
- PDFs में vector DataMatrix और GS1 DataMatrix barcode rendering.
- Barcode के around label या document layout.
- Repeated product या warehouse labels के लिए template binding.
- Print, archive या download workflows के लिए binary PDF output.
आपका system क्या संभालता है
- Encoded payload content, application identifiers, serials, lots और regulatory text.
- Scanner testing, module size validation, label stock और acceptance criteria.
- Barcode consume करने वाला industry-specific compliance workflow.
Production checklist
- Rendering से पहले payload syntax verify करें.
- Production size, DPI और material पर print और scan करें.
- Long identifiers और multiple product-language variants test करें.
- Certification और regulatory review को gPdf से बाहर रखें.
- Approved label families के लिए Template Render use करें.
Claim boundaries
- gPdf DataMatrix barcodes render करता है; regulatory compliance certify नहीं करता.
- Barcode payload semantics और scanner acceptance आपका system own करता है.
- Vector rendering physical print validation को replace नहीं करता.
PDF में DataMatrix rendering job है
DataMatrix barcodes अक्सर product या logistics identifiers carry करते हैं. Important boundary payload है. gPdf आपके भेजे value से vector barcode render करता है; value का मतलब क्या है और वह external requirements satisfy करता है या नहीं, यह आपका system decide करता है.
FAQ
- क्या gPdf DataMatrix barcodes support करता है?
- हाँ. Public schema datamatrix और GS1 DataMatrix barcode format aliases list करता है.
- क्या gPdf regulatory content validate करता है?
- नहीं. gPdf barcode render करता है. Payload correctness और regulatory review आपका system own करता है.
- क्या DataMatrix labels Template Render use कर सकते हैं?
- हाँ. जब repeated label layout को सिर्फ business data accept करना चाहिए, तब Template Render use करें.
- क्या फिर भी scan testing चाहिए?
- हाँ. Production printers, materials और scanners के साथ हमेशा validate करें.