As long as you stay in PDF format I guess that disabling text search is not possible. But you could do the following:
- Extract PDF pages as images
- Recreate a PDF based on the images
Depending on the OS you use, there are different tools that can do that.
Under Linux for example there is the convert
tool from the ImageMagick
package that could do that.
EDIT:
Based on the fact that the convert
tool seems to be available under Windows (thanks for the hint @moonpoint) I will add the commands I would use with convert to achieve the extraction and recreation (please note that this is the Linux command syntax which should either be identical or at least similar to the syntax in Windows):
convert YourFile.pdf YourFile.png
# Extract the pages as images
convert YourFile-*.png YourNewFile.pdf
# Recreate a PDF from the images
1Have you considered rendering the text as an image first? – Rowland Shaw – 2015-08-16T14:13:58.463