Currently, there is no direct way to convert TIFF files into searchable PDF document. However, in order to accomplish this requirement, you may use combination of Aspose.OCR for .NET and Aspose.Pdf for .NET.
First, perform OCR on the TIFF files using Aspose.OCR for .NET to extract the text. Once the image contents have been recognized, you may place them inside a new PDF document, which indeed will be a searchable PDF document. Before saving the final output, you may set the PDF compliance to PDF/A format. For further details, please visit:
We have evaluated the attached image on our end. We have used the latest version of Aspose.OCR for .Net 2.7.0. While testing it was found that the images provided by you has very low DPI value i.e. 96. Please note that the current implementation of the Aspose.OCR APIs perform well with images having resolution of at least 300 DPI and the accuracy rate tends to decrease by decreasing the resolution. Your provided image has resolution of 96 DPI therefore it will not be possible to get 100% accuracy if you wish to scan the complete image. On the other hand, if you intend to get some specific contents from a portion of the image, you can use the custom recognition blocks to get better accuracy.
Please note, the above mentioned solution is useful in scenario when you have documents following the similar structure, that is; the contents to be scanned are always on the same location for each image.
Consider the following code snippet that we used to extract information from image provided by you using custom recognition blocks.