[Tex/LaTex] How to change font size in graphics included with \includegraphics

fontsizegraphics

I woud like to change the font size of the picture inserted by \includegraphics.. have used the scaling 1 and the picture occupies my space, but the font in the picture is very small. How can I change the font size on that picture. scaling it more bigger is not the option. Here is the code:

\begin {figure} [!htb]
\includegraphics[scale=0.95]{pics/Cascaded_control.pdf}
\caption {Cascaded servo control[Len2]}
\label{cascaded}
\end {figure}

Best Answer

The \includegraphics command is "dumb". All it does is take the datafile handed to it and dump it bit for bit into the resulting document (along with any scaling factor specified).

The upshot of this is that it is not possible to do any processing on \includegraphics'ed vector graphics (i.e. PDF and EPS files) such as changing typefaces, font sizes or colours.