I have a drawing made by the CAD DraftSight, I exported the drawing into a .pdf file and then I included it with
\usepackage{graphicx}
% ...
\begin{figure}[!htb]
\centering
\includegraphics[scale=1]{myfig.pdf}
\caption{My figure}
\end{figure}
The figure is properly shown in the final .pdf document (I compile it in TeX Live with the command pdflatex).
Is it possible to substitute some text inside the .pdf document like the psfrag does for an .eps figure?
I have made some tests with psfrag but with no luck... I had problems with the package auto-pst-pdf, the command line options -shell-escape and basically I am clueless...

\stackinsetmacro (stackenginepackage) can be used to overlay text on an image (see http://tex.stackexchange.com/questions/171483/mathematical-formulas-on-a-graph-not-made-by-tex/171486#171486). The text could be set in a white colorbox to obliterate the background info. – Steven B. Segletes Nov 14 '14 at 03:57