Nutrient Web SDK
    Preparing search index...

    Interface PerformOcrOperationServer

    If the OCR component is present in the license, performs OCR on the pages given with the language requested. See https://www.nutrient.io/guides/server/current/ocr/language-support/ for supported languages.

    instance.applyOperations([{
    type: "performOcr",
    pageIndexes: "all",
    language: "en"
    }]);
    interface PerformOcrOperation {
        language: string;
        pageIndexes?: number[] | "all";
        type: "performOcr";
    }
    Index

    Properties

    language: string
    pageIndexes?: number[] | "all"
    type: "performOcr"