OCR on pdf supporting only first 10 pages

I have a pdf with 15 pages and each page has one image in it. I am using Aspose OCR to make this pdf as searchable pdf, but OCR is happening only for first 10 pages and also returning that 10 page pdf in response.

I am using below C# code with OCR library version #22.8.0

var settings = new DocumentRecognitionSettings();
settings.StartPage = 0;
settings.PagesNumber = 15;
settings.LinesFiltration = true;
settings.AutoSkew = true;
settings.DetectAreas = true;
settings.DetectAreasMode = DetectAreasMode.PHOTO;
settings.ThreadsCount = 1;
settings.Language = Language.Eng;

Aspose.OCR.AsposeOcr asposeOcr = new AsposeOcr();
List result = asposeOcr.RecognizePdf(inputFile, settings);
AsposeOcr.SaveMultipageDocument(outputFile, Aspose.OCR.SaveFormat.Pdf, result);

@sureshvb

Please make sure that you are using latest version of the API with a valid or 30-days free temporary license. In case you still face issues, please share your sample PDF document with us. We will test the scenario in our environment and address it accordingly.