I have three images as subfigures. Two images are aligned happily, the first one doesn't line up. All images are the same size (519x346 pixels).
This is what it looks like:

I'd like to line up (a) (both image and caption) if possible, the way that (b) and (c) are.
This is the code to produce the currently-seen image:
\documentclass[11pt]{report}
\usepackage[pdftex, demo]{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\begin{figure}[htbp]
\centering
\begin{subfigure}[h]{0.3\textwidth}
\includegraphics[width=\textwidth]{../Images/GloveOfDoom/RFIDTag_Testing_Side_s}
\label{rfidtest_xaxis}
\caption{Testing of the X-axis.}
\end{subfigure}
\begin{subfigure}[h]{0.3\textwidth}
\includegraphics[width=\textwidth]{../Images/GloveOfDoom/RFIDTag_Testing_Vertical_s}
\caption{Testing of the Y-axis.}
\label{rfidtest_yaxis}
\end{subfigure}
\begin{subfigure}{0.3\textwidth}
\includegraphics[width=\textwidth]{../Images/GloveOfDoom/RFIDTag_Testing_Other_s}
\caption{Testing of the Z-axis.}
\label{rfidtest_zaxis}
\end{subfigure}
\caption[RFID tag read-range testing]{RFID tag read-range testing setup. In all tests, the finger moves towards along an axis towards the tag.}
\label{rfidtag_testing}
\end{figure}
\end{document}

[h]option is unknown and ignored; you should use[b]– egreg Dec 21 '12 at 12:09graphicxpackage apdftexoprtion – Benedikt Bauer Dec 21 '12 at 12:10