I have a habit of sending html emails to my friends. I usually rely on encryption provided by my protonmail account but occasionally I use less secure accounts as gmail and yahoo.
Would sending the body of the message in the form of an image increase my privacy and resistance to being surveiled? I'm mainly concerned with my email and phone number being scraped from the body of the message. When such a measure applied, would using different type of images, let's say jpeg instead of png, make a difference in their resistance to optical character recognition technology?
P.S. I write my emails in LaTeX, compile them to pdf files, and then I use the following code to create my images:
#!/usr/bin/bash
for f in *.pdf; do
pdftoppm -png -rx 1920 -ry 1080 ./"$f" ./"${f%.pdf}"
done