Python Forum
write image into string format into text file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
write image into string format into text file
#1
To write image file into text format using pytesseract.image_to_string, I am using below code. It is only writing last lne of the image into out file, instead of entire data.

try:
    from PIL import Image
except ImportError:
    import Image
import pytesseract
# Simple image to string
text=print(pytesseract.image_to_string(Image.open('test.jpg'),lang="eng"))
with open('out.txt', 'w') as f:
    print(text, file=f)
Reply
#2
is that you, recent post on SO:
https://stackoverflow.com/q/56404380/4046632

or just a coincidence? check the last answer https://stackoverflow.com/a/56404405/4046632


Now, I see you, crossposted at SO
https://stackoverflow.com/q/56404452/4046632
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#3
Thank you! It helped. I was having "print" even though i am writing file.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I write formatted (i.e. bold, italic, change font size, etc.) text to a file? JohnJSal 12 27,752 Feb-13-2025, 04:48 AM
Last Post: tomhansky
  How to write variable in a python file then import it in another python file? tatahuft 4 845 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  [SOLVED] [Linux] Write file and change owner? Winfried 6 1,456 Oct-17-2024, 01:15 AM
Last Post: Winfried
Photo image generation with text style Belialhun 0 625 Oct-08-2024, 01:53 PM
Last Post: Belialhun
  What does .flush do? How can I change this to write to the file? Pedroski55 3 1,278 Apr-22-2024, 01:15 PM
Last Post: snippsat
  Last record in file doesn't write to newline gonksoup 3 1,500 Jan-22-2024, 12:56 PM
Last Post: deanhystad
  write to csv file problem jacksfrustration 11 4,771 Nov-09-2023, 01:56 PM
Last Post: deanhystad
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,699 Nov-09-2023, 10:56 AM
Last Post: mg24
  error "cannot identify image file" part way through running hatflyer 0 1,904 Nov-02-2023, 11:45 PM
Last Post: hatflyer
  Need to replace a string with a file (HTML file) tester_V 1 1,848 Aug-30-2023, 03:42 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020