Our Computer Notes

Recent site activity

Latex‎ > ‎

PNG images with LaTeX

To work with PNG files instead of EPS ones, you will need some extra parameters to avoid the well known error message:

Cannot determine size of graphic in figuras/picture.png (noBoundingBox). ...

To avoid this issue, you have to manually set the picture bounds. Check the picture size in some Image viewer and include the image as follows:

\begin{figure}[htb]
   \centering
   \includegraphics[scale=0.5,bb=0 0 385 567]{figuras/picture.png}
   \caption{Some description about the picture}
   \label{picture-label}
\end{figure}

The above code includes an image of 386 x 567 pixels. You can also change the scale to reduce or increase the image size.