C/C++ OCR and Barcode Recognition

High performance, royalty-free C/C++ OCR and barcode recognition on Windows, Linux, Mac OS and Unix

Resources and FAQ's for Asprise OCR for C/C++

    Recognizes text only or barcode only

    To recognize text only:

    c_com_asprise_ocr_recognize(ptrToApi, fileImg, -1, -1, -1, -1, -1,
      OCR_RECOGNIZE_TYPE_TEXT, OCR_OUTPUT_FORMAT_PLAINTEXT,
      NULL, NULL, NULL);

    To recognize barcode only:

    c_com_asprise_ocr_recognize(ptrToApi, fileImg, -1, -1, -1, -1, -1,
      OCR_RECOGNIZE_TYPE_BARCODE, OCR_OUTPUT_FORMAT_PLAINTEXT,
      NULL, NULL, NULL);

    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:

    c_com_asprise_ocr_recognize(ptrToApi, fileImg, -1, 0, 0, 400, 200,
      OCR_RECOGNIZE_TYPE_BARCODE, OCR_OUTPUT_FORMAT_PLAINTEXT,
      NULL, NULL, NULL);

    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

    c_com_asprise_ocr_recognize(ptrToApi, "C:/test.png;C:/test2.jpg", -1, -1, -1, -1,
      OCR_RECOGNIZE_TYPE_BARCODE, OCR_OUTPUT_FORMAT_PLAINTEXT,
      NULL, NULL, NULL);

    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:

    c_com_asprise_ocr_recognize(ptrToApi, "test.tif", 2, -1, -1, -1, -1,
      OCR_RECOGNIZE_TYPE_BARCODE, OCR_OUTPUT_FORMAT_PLAINTEXT,
      NULL, NULL, NULL);

    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:

    c_com_asprise_ocr_recognize(ptrToApi, "test.pdf", -1, -1, -1, -1, -1,
      OCR_RECOGNIZE_TYPE_BARCODE, OCR_OUTPUT_FORMAT_PLAINTEXT,
      NULL, NULL, NULL);