18 lines
337 B
C#
18 lines
337 B
C#
using Kreuzberg;
|
|
|
|
var config = new ExtractionConfig
|
|
{
|
|
PdfOptions = new PdfConfig
|
|
{
|
|
ExtractMetadata = true
|
|
}
|
|
};
|
|
|
|
var result = KreuzbergLib.ExtractFileSync("document.pdf", config);
|
|
|
|
if (result.Metadata?.Format.Pdf != null)
|
|
{
|
|
var title = result.Metadata.Format.Pdf.Title;
|
|
Console.WriteLine($"Title: {title}");
|
|
}
|