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
已提问 2 年前386 查看次数
1 回答
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
已回答 2 年前
  • 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.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则