Ana içeriğe geç

Bölmek PDF Barkod ile API

Bu uç noktanın işlevi: O PDF4me Bölmek PDF Barkod ile REST API taramalar PDF Belirli bir barkod değerini içeren sayfalar için belgeyi tarar ve eşleşen her sayfada belgeyi böler. Tanımlayın barkod dizesi, filtre yöntemi ve barkod türüdaha sonra kesip kesmeyeceğinize karar verin. önce, sonra veya çıkararak Barkod sayfası. API yapılandırılabilir kullanımlar DPI Farklı baskı kalitelerinde güvenilir barkod tanıma için işleme yapar ve isteğe bağlı olarak aynı barkoda sahip ardışık sayfaları tek bir çıktı bölümünde gruplandırabilir. Otomatik fatura işleme, posta sıralama, belge toplu yönlendirme ve barkodları fiziksel belge ayırıcı olarak kullanan her türlü iş akışı için idealdir.

İlgili Blog Yazıları
Bu özellik için henüz bir blog yazısı yok — yakında yayınlanacak.
Bu arada, her platforma yönelik eğitimler ve iş akışları için PDF4me bloguna göz atın.
Blogu ziyaret edin

Kimliğinizi Doğrulama API Rica etmek

Her PDF4me REST API Çağrınızda mutlaka sizin de bulunmanız gerekiyor. API anahtara girin Authorization Başlık. Anahtarınızı geliştirici kontrol panelinden edinin.

Kaçırmamanız Gereken Önemli Bilgiler

All eight parameters are required for reliable barcode splitting

DocName, DocContent, Barcode String, Barcode Filter, Barcode Type, Split Barcode Page, Combine Pages With Same Consecutive Barcodes, and Pdf Render Dpi are all required. Omitting any parameter causes the API to return an error or produce unexpected split results. Validate all eight fields before sending the request.

Barcode Type must match the actual barcode format printed in the PDF

The API uses Barcode Type to select the correct recognition engine. Setting Code128 when the document contains QR Codes causes recognition to fail silently: the API returns the unsplit original document because no barcodes matched. Always verify the barcode format used in your documents before setting this parameter.

Increase Pdf Render Dpi to 300+ for small or dense barcodes

The API renders each page at the specified DPI before scanning for barcodes. At low DPI (e.g. 150), small or dense barcodes: such as DataMatrix or compact QR codes on A4 pages, may not resolve clearly enough for accurate decoding. Use 300 DPI as your default. Increase to 400-600 DPI only for very small barcodes; higher values increase processing time significantly.

REST API Uç nokta

YöntemUç nokta
POST/api/v2/SplitPdfByBarcode_old

Temel URL: https://api.pdf4me.com

Parametreler

⚠️ Sekiz parametrenin tamamı gereklidir. Doğru barkod algılama ve bölme işlemi için.

ParametreGerekliTipNe işe yarar?Örnek
DocNameRequiredStringFilename of the source PDF including the .pdf extension. Used for processing identification and output file naming.batch-invoices.pdf
DocContentRequiredBase64The complete PDF file encoded as a Base64 string. The PDF must contain pages with machine-readable barcodes.JVBERi0xLjQK...
Barcode StringRequiredStringThe barcode text or pattern to search for. Matched against decoded barcode values on each page using the Barcode Filter method.INV-
Barcode FilterRequiredEnumHow the Barcode String is matched against decoded barcode text. Contains: text includes the string anywhere. Equals, exact match. StartsWith, text begins with the string. EndsWith, text ends with the string.Contains
Barcode TypeRequiredStringThe barcode format printed in the PDF. Must match the actual barcode standard used. Common values: Code128 · Code39 · QRCode · EAN13 · EAN8 · DataMatrix · PDF417Code128
Split Barcode PageRequiredEnumControls where the split occurs relative to the barcode page. Before: barcode page starts the next document. After, barcode page ends the current document. Remove, barcode page is excluded from all output.After
Combine Pages With Same Consecutive BarcodesRequiredBooleanWhen true, consecutive pages sharing the same barcode value are grouped into a single output document rather than split individually. Useful for multi-page forms where the same barcode appears on every page of a section.true
Pdf Render DpiRequiredStringDPI resolution for rendering PDF pages before barcode scanning. 300 is recommended for standard-size barcodes. Increase to 400-600 for small or dense barcodes. Higher DPI improves recognition accuracy but increases processing time.300

Çıkış Alanları

AlanTipTanım
Dosya İçeriğiBase64Çıkış bölünmesi PDF içerik şu şekilde kodlanmıştır Base64Dosyayı kaydetmek için ikili koda dönüştürün.
Dosya adıStringÇıktı bölümünün dosya adı PDF.

Talep Örneği

Başlıklar

Content-Type: application/json
Authorization: YOUR_API_KEY

JSON Yük

{
"DocName": "batch-invoices.pdf",
"DocContent": "JVBERi0xLjQK...",
"Barcode String": "INV-",
"Barcode Filter": "Contains",
"Barcode Type": "Code128",
"Split Barcode Page": "After",
"Combine Pages With Same Consecutive Barcodes": true,
"Pdf Render Dpi": "300"
}

Cevap

{
"File Content": "BASE64_SPLIT_PDF_CONTENT",
"File Name": "batch-invoices-split.pdf"
}

Kod Örnekleri

Yaygın Kullanım Senaryoları

Invoice Batch Processing

Accounts payable teams receive consolidated PDF batches where each invoice has a Code128 barcode separator page. Split at each barcode (Split Barcode Page: Remove) to extract individual invoice PDFs for routing to the correct cost centre or approval queue automatically.

Mail and Parcel Sorting

Bulk print mail runs produce a single PDF with a barcode cover sheet per recipient. Split the document at each barcode page (Split Barcode Page: After) to extract individual mail pieces. Use the barcode value (address or route code) to name each split file for downstream sorting and physical printing.

Document Archive Organisation

Scanned document batches from physical mailrooms often include a QR code separator sheet between each document. Set Barcode Type: QRCode, Barcode Filter: Contains the archive category code, and Split Barcode Page: Remove to get clean content-only PDFs ready for archiving: with no separator stubs included.

Sıkça Sorulan Sorular

What barcode types does the Split PDF by Barcode API support?

The API supports common 1D and 2D formats including Code128, Code39, QR Code, EAN-13, EAN-8, DataMatrix, and PDF417. Specify the correct type in Barcode Type: using the wrong type causes the recognition engine to miss all barcodes and return the unsplit original document.

What does the Barcode Filter parameter control?

Barcode Filter controls how Barcode String is matched against decoded barcode text on each page. Contains: barcode text includes the string anywhere. Equals, exact match only. StartsWith, text begins with the string. EndsWith, text ends with the string. Use Contains for partial patterns, Equals for strict control over exact barcode values.

What does Split Barcode Page control?

Split Barcode Page determines what happens to the page containing the matching barcode. Before: that page starts the next output document. After, that page ends the current output document. Remove, that page is excluded from all output documents entirely. Use Remove for blank separator pages or cover sheets you do not want in any output.

What does Combine Pages With Same Consecutive Barcodes do?

When set to true, consecutive pages sharing the same barcode value are grouped into one output document instead of being split individually. This is useful for multi-page records or forms where the same barcode appears on every page of a section: it prevents unnecessary splits within a single logical document.

Why should I increase Pdf Render Dpi for small or dense barcodes?

The API renders each PDF page at the specified DPI before scanning. At 150 DPI, small barcodes (e.g. DataMatrix cells under 5mm wide) may not resolve with enough pixel density for accurate decoding. Use 300 DPI as your default. Increase to 400-600 DPI for very small or dense barcodes: note that higher DPI significantly increases processing time and memory usage.

İlgili API'ler

Yardım Alın