21 lines
380 B
Markdown
21 lines
380 B
Markdown
|
|
```swift title="Swift"
|
||
|
|
import Foundation
|
||
|
|
import Kreuzberg
|
||
|
|
import RustBridge
|
||
|
|
|
||
|
|
let configJson = """
|
||
|
|
{
|
||
|
|
"images": {
|
||
|
|
"extract_images": true,
|
||
|
|
"target_dpi": 300,
|
||
|
|
"max_image_dimension": 2000
|
||
|
|
}
|
||
|
|
}
|
||
|
|
"""
|
||
|
|
|
||
|
|
let config = try extractionConfigFromJson(configJson)
|
||
|
|
let result = try extractFileSync("document.pdf", nil, config)
|
||
|
|
|
||
|
|
print(result.content().toString())
|
||
|
|
```
|