How do I trim the bounding box of an .eps figure?
\documentclass{article}
\usepackage[caption = false]{subfig}
\usepackage[demo]{graphicx}
\begin{document}
\begin{figure}[H]
\centering
\includegraphics[width = 5in]{something.eps}
\end{figure}
\end{document}

I want to trim the top portion so the spacing between the equation and the figure isn't too much.
\begin{figure*}? – dustin Jun 25 '13 at 06:00\includegraphics[trim=0 0 0 50bp,clip]{something.eps}to remove50bpfrom the top ofsomething.eps. The 4 numbers/lengths are<llx> <lly> <urx> <ury>and represent the (x,y) coordinates of thelower-left andupper-right corners of the bounding box of the image. – Werner Jun 25 '13 at 06:37