I am working on project ,where i converting scanned image to text, i am using python pytesseract.image_to_string, everything working fine, i get text file, but problem is text file not preserved multiple space between column.It is taking only one space between the columns, I am using python2.7, ubuntu 14.04.
my code url = "/home/raghu/raghu2.png" img = Image.open(url)
text = pytesseract.image_to_string(img, lang='eng') print text
Is there any configuration so that i can put in above line.