-4

i want to develop desktop app to convert images to text than add that text to PDF and ms word document simple c# code can anyone help me i just uploaded the image in picturebox but i can not get it how to to the remaining task

1 Answers1

0

You must use OCR(optical character recognition) librariys for example

  1. TesseractOCR

  2. Microsoft Cognitive Services - Computer Vision API

  3. EmguCV with TesseractOCR

    image to text with Tesseract OCR sample code https://github.com/charlesw/tesseract-samples tesseract for c# nuget link https://www.nuget.org/packages/Tesseract/

You can use it to convert text to pdf file itextsharp https://sourceforge.net/projects/itextsharp/

You can now convert to the Word file How to extract text from MS office documents in C#

enter image description here

Community
  • 1
  • 1
mesutpiskin
  • 1,771
  • 2
  • 26
  • 30