Complete the Tera template scaffolding for all 8 subprocess-based SDKs
under templates/sdk-skeleton/<lang>/: node, go, java, dotnet, ruby,
php, swift, python-subprocess.
Each template directory contains:
- Package metadata template (package.json, go.mod, pom.xml, etc.)
- Method stubs template (methods.ts, client.go, Methods.java, etc.)
- Error stubs template (errors.ts, errors.go, Errors.java, etc.)
- Conformance runner template (conformance.test.ts, etc.)
- README template with {{ version }} variable substitution
- GENERATED.tera marker file
New files for python-subprocess:
- pdftract_subprocess/codegen/errors.py.tera
- tests/codegen/conformance_test.py.tera
- README.md.tera
- GENERATED.tera
All 8 language template directories are now complete and ready for
consumption by the `pdftract sdk codegen` subcommand.
Co-Authored-By: Claude Code <noreply@anthropic.com>
64 lines
1.4 KiB
Text
64 lines
1.4 KiB
Text
# pdftract-php
|
|
|
|
PHP SDK for pdftract - PDF extraction and conformance testing.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
composer require jedarden/pdftract:^{{ version }}
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Basic extract
|
|
|
|
```php
|
|
use Pdftract\Codegen\Client;
|
|
use Pdftract\Codegen\PathSource;
|
|
|
|
$client = new Client();
|
|
$doc = $client->extract(new PathSource('document.pdf'));
|
|
echo "Pages: " . count($doc['pages']) . "\n";
|
|
```
|
|
|
|
### Extract with OCR
|
|
|
|
```php
|
|
$options = new ExtractOptions();
|
|
$options->ocrLanguage = 'eng';
|
|
$options->ocrThreshold = 0.7;
|
|
|
|
$doc = $client->extract(new PathSource('scanned.pdf'), $options);
|
|
```
|
|
|
|
### Search
|
|
|
|
```php
|
|
foreach ($client->search(new PathSource('document.pdf'), 'invoice') as $match) {
|
|
echo "Found on page {$match['page']}: {$match['text']}\n";
|
|
}
|
|
```
|
|
|
|
### Stream extraction
|
|
|
|
```php
|
|
foreach ($client->extractStream(new PathSource('large.pdf')) as $page) {
|
|
echo "Page {$page['page']}: " . count($page['blocks'] ?? []) . " blocks\n";
|
|
}
|
|
```
|
|
|
|
## Binary version compatibility
|
|
|
|
This SDK requires pdftract {{ version }}. Download from:
|
|
https://github.com/jedarden/pdftract/releases/tag/v{{ version }}
|
|
|
|
## Troubleshooting
|
|
|
|
### Binary not found
|
|
Ensure `pdftract` is on your PATH. The SDK probes PATH for the executable.
|
|
|
|
### Version mismatch
|
|
The SDK will refuse to invoke mismatched binary versions. Install the correct version.
|
|
|
|
### Network failure
|
|
For remote URLs, check your network connection and TLS certificate chain.
|