This commit is contained in:
14
docs/snippets/elixir/config/pdf_config.md
Normal file
14
docs/snippets/elixir/config/pdf_config.md
Normal file
@@ -0,0 +1,14 @@
|
||||
```elixir title="Elixir"
|
||||
config_json = Jason.encode!(%{
|
||||
"pdf_options" => %{
|
||||
"extract_images" => true,
|
||||
"passwords" => ["password123"],
|
||||
"extract_metadata" => true,
|
||||
"hierarchy" => %{}
|
||||
}
|
||||
})
|
||||
|
||||
{:ok, result} = Kreuzberg.extract_file_sync("encrypted.pdf", "application/pdf", config_json)
|
||||
IO.puts("Title: #{inspect(result.metadata.title)}")
|
||||
IO.puts("Authors: #{inspect(result.metadata.authors)}")
|
||||
```
|
||||
Reference in New Issue
Block a user