Textract-API not returning TABLE specific data when using PHP client

0

I'm using the following code:

private function analyze(string $fileName): Result
{
    return $this->textractClient->analyzeDocument(
        [
            'Document' => [
                'S3Object' => [
                    'Bucket' => $this->bucketName,
                    'Name' => $fileName,
                ],
            ],
            'FeatureTypes' => ['TABLES', 'FORMS']
        ]
    );
}

I point to a JPEG image in the bucket and everything seems to work. However, the image contains a table with information which is processed correctly when I use the Textract web interface (by uploading the original PDF where the mentioned JPEG image was extracted from) but in the PHP result, there are no block types "TABLE" or "CELL"; they're all of the type "LINE".

Am I doing something wrong?

Any help would be highly appreciated.

Michiel
gefragt vor 2 Jahren385 Aufrufe
1 Antwort
0

Hi, just want to confirm is your PDF file a multi-page document or just one-page document? If it is multi-page document, then it might be that the result is paginated so you cannot search for TABLE result. Thanks.

AWS
beantwortet vor 2 Jahren
  • The PDF is indeed a multi-page document but the JPEG I'm using with the AnalyzeDocument call is just one page as it's a single image. And this page has a table on it, which gets extracted fine when I use the web interface with the original PDF but gets extracted as LINE blocks when I analyze the JPEG.

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen