Extracting text from logo in Excel file

Hello,

We have Excel files which is embedded with a logo (image). We need to extract the text from this image. The excel file contains other text data too, which we are extracting from usual excel activities.

Thank you
Shreya

Hi @Shreya_Gandhi

I suggest to look the below link

Hope this may help you

Thanks,
Srini

1 Like

Hi @Shreya_Gandhi

Can you check out the thread

Regards
Gokul

2 Likes

Hello @Shreya_Gandhi

  1. Read Excel File (Excel Application Scope, Read Range, etc.)
  2. Loop through Excel rows
    a. Extract the image as binary data
    b. Use OCR (Tesseract OCR) on the image binary data to get text
    c. Store the extracted text
  3. Continue with other Excel data extraction as needed

Thanks & Cheers!!!

1 Like

Hi,

Since the image on our excel was not linked to any particular cell, we could not use any activities related to excel. We have written a VBA code to retrieve the image and then used OCR to extract the text.

Thank you everyone for providing your inputs.
Shreya

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.