I have two figures of slightly different sizes. So I'm unable to align them vertically, as shown in the figure.

I'm using the following code.
\begin{figure}[h]
\centering
\includegraphics[width=2.8cm]{Fig1.pdf}
\includegraphics[width=3.2cm]{Fig2.pdf}
\caption{This is the caption.}
\end{figure}
The problem is that Fig2 has an in-picture label, so to make them look of the same size, I have used width=3.2cm for Fig2 and width=2.8 for Fig1. So is there any way to align them at the top? For example, by moving only the left figure a little up or right fig a little down.
\raisebox{-\height}{...}on each image. – John Kormylo Jun 18 '21 at 13:36