[Tex/LaTex] wrapfig: frame around image and caption

captionsframedgraphics

I have an image wich is beside some text, and I would want to frame the image and the caption.

My code is for now:

\begin{wrapfigure}[4]{r}{8cm}
    \centering
     \fbox{\includegraphics[width=7cm]{Encodages}}
    \caption[Différents encodages]{Différents types d'encodage pour «Wikipédia, l'encyclopédie libre»}
\end{wrapfigure}
BLABLABLA TEXT

but the fbox is only around the image. How could I do that?

Best Answer

\begin{wrapfigure}[4]{r}{8cm}
 \fbox{%
   \begin{minipage}{\dimexpr8cm-2\fboxsep-2\fboxrule}\centering
    \includegraphics[width=7cm]{Encodages}
    \caption[Différents encodages]{Différents types d'encodage pour «Wikipédia, l'encyclopédie libre»}
   \end{minipage}}
\end{wrapfigure}