Method 1
Just 4 fun with PSTricks.

\documentclass[pstricks,border=1pt]{standalone}
\usepackage{amsmath}
\newsavebox\IBox
\savebox\IBox{\Huge $\displaystyle 128\sqrt{\text{\LARGE e}980}$}
\begin{document}
\begin{pspicture}(\wd\IBox,\ht\IBox)
\rput[bl](0,0){\usebox\IBox}
\end{pspicture}
\begin{pspicture}(\wd\IBox,\ht\IBox)
\psclip{\psframe[linestyle=none,linewidth=0](0,0)(\wd\IBox,0.45\ht\IBox)}
\rput[bl](0,0){\usebox\IBox}
\endpsclip
\end{pspicture}
\end{document}
Method 2
With graphicx. Note that it must be compiled with either pdflatex -shell-escape filename.tex or xelatex -shell-escape filename.tex
%filename.tex
\documentclass{standalone}
\usepackage{filecontents}
\begin{filecontents*}{temporary.tex}
\documentclass{standalone}
\usepackage{amsmath}
\usepackage{mathpazo}
\begin{document}
$\displaystyle 128 \sqrt{\text{\scriptsize e} 980}$
\end{document}
\end{filecontents*}
\immediate\write18{pdflatex temporary}
\usepackage{graphicx}
\begin{document}
\includegraphics[trim=0 0 0 6.2,clip]{temporary}
\end{document}