VB.NET OCR and Barcode Recognition

High performance, royalty-free VB.NET OCR and barcode recognition on Windows 32bit and 64bit

Resources and FAQ's for Asprise OCR for VB.NET

    Recognizes text only or barcode only

    To recognize text only:

    string s = ocr.Recognize("C:\img.jpg", -1, -1, -1, -1, -1,
      AspriseOCR.RECOGNIZE_TYPE_TEXT, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);

    To recognize barcode only:

    string s = ocr.Recognize("C:\img.jpg", -1, -1, -1, -1, -1,
      AspriseOCR.RECOGNIZE_TYPE_BARCODE, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);

    Perform OCR on part of the image

    In some cases, you might not want to OCR the whole image. In that case, you can OCR on part of the image to save time:

    string s = ocr.Recognize("C:\img.jpg", -1, 0, 0, 400, 200,
      AspriseOCR.RECOGNIZE_TYPE_ALL, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);

    The above code OCR the top left part of the image with width 400 pixels and height 200 pixels.

    Perform OCR on multiple input files in one shot

    string s = ocr.Recognize("C:\img1.jpg;C:\img2.png", -1, -1, -1, -1, -1,
      AspriseOCR.RECOGNIZE_TYPE_ALL, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);

    Perform OCR on a certain page from the specified TIFF file

    A TIFF file may contain multiple pages. If you need to recognize only a certain page, you can specify the page number as following:

    string s = ocr.Recognize("C:\img1.tif", 2, -1, -1, -1, -1,
      AspriseOCR.RECOGNIZE_TYPE_ALL, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);

    Note 2 means the second page (the page number of the first page is 1).

    Perform OCR on a PDF input file

    You use the following method to perform OCR on a PDF input file:

    string s = ocr.Recognize("test.pdf", -1, -1, -1, -1, -1,
      AspriseOCR.RECOGNIZE_TYPE_TEXT, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);