vote up 0 vote down star

I am getting the following error while compiling my Latex File :

! LaTeX Error: Cannot determine size of graphic in tree.jpg (no BoundingBox).

Why do I get this error ? What has this to do with an .eps file ?

Infact, I could compile it fine with MacTex on my machine. But when I submit it online to a scientific journal for publication, it compiles it on the server and sends me the resultant PDF which as all these error that prevent it from compiling.

I am using the following syntax for including the images :

\begin{figure}[!h]
    \begin{center}
        \scalebox{0.45}{
            \includegraphics{tree.jpg}}
    \end{center}
            \caption{\small A sample}
            \label{tree}
\end{figure}

What should I do ? Could it be that their server is using an old compiler ?

UPDATE : It finally worked. I converted the first image to PDF and the compilation happened perfectly. I guess it used the bounding box value from that PDF and applied it to all images.

flag

Are you using pdflatex? Cause latex only supports vector graphics (read: eps) – Stephan202 Apr 8 at 21:36
I don't know the engine they are using on the server. My machine has MacTex and it is able to compile it. – euphoria83 Apr 8 at 21:40
Ah, yes. s/you/they/. Perhaps you should contact the journal and ask them about the specifics of their latex implementation. – Stephan202 Apr 8 at 21:43
For what it's worth, JPG is quite possibly the worst image format to use when you're going to print something (because of the quality degradation). In Latex EPS is best, PDF is a close second. – David Apr 8 at 21:46
@David: EPS and PDF are essentially equivalent when it comes to image quality. It just depends whether you're using LaTeX or pdfLaTeX as to which you'd choose. – Will Robertson Apr 9 at 2:14

2 Answers

vote up 4 vote down check

I've had the same problems including jpegs in LaTeX. The engine isn't really built to gather all the necessary size and scale information from JPGs. It is often better to take the JPEG and convert it into a PDF (on a mac) or EPS (on a PC). GraphicsConvertor on a mac will do that for you easily. Whereas a PDF includes DPI and size, a JPEG has only a size in terms of pixels.

( I know this is not the answer you wanted, but it's probably better to give them EPS/PDF that they can use than to worry about what happens when they try to scale your JPG).

link|flag
Thanks. Great help. But then why is it working on my machine ? How is it getting the bounding box values ? – euphoria83 Apr 8 at 21:38
MacTex seems to be more robust than other Tex distributions that I've seen. After working with too many academic publishers I've realized that I can never find something as old and incompatible as whatever they're using, so I just create EPS or PDFs. – Uri Apr 8 at 21:41
By the way, if you draw diagrams take a look at OmniGraffle. One of the best reasons to use a Mac – Uri Apr 8 at 21:44
Yeah, its surprising how the interface for CS journals are so out-dated. How do I convert to PDF format ? Is GraphicsConvertor a software provided with the OS ? I could not find it here and on the internet. – euphoria83 Apr 8 at 21:56
@euphoria: Which journal are you publishing to? A lot of the ACM journals and conferences actually take word files, which is even worse. – Uri Apr 8 at 22:01
show 7 more comments
vote up 0 vote down

I use MacTex, and my editor is TexShop. It probably has to do with what compiler you are using. When I use pdftex, the command:

\includegraphics[height=60mm, width=100mm]{number2.png}

works fine, but when I use "Tex and Ghostscript", I get the same error as you, about not being able to get the size information. Use pdftex.

Incidentally, you can change this in TexShop from the "Typeset" menu.

Hope this helps.

link|flag
yeah. but i can't change the engine on the server. ;-) – euphoria83 Apr 8 at 22:01
Yea, I had the same problem when I tried using this. I eventually just decided to let the file contain everything. – Uri Apr 8 at 22:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.