I am trying to use LaTeX to output DVI files, then use DVIPNG to make images for, say, a website. The problem is when I take something like this:
\documentclass{article}
\pagestyle{empty}
\begin{document}
Hello World
\end{document}
and run LaTex on it, then run DVIPNG on the resultant DVI file, I get an image with lots of whitespace to the left and above the text.
I have two questions: One, how do I remove the whitespace to the left and about the "Hello World"? And two, how do I make the text larger? I have done this before correctly, I just don't remember how.

\usepackage[active]{preview}in the preamble and call dvipng with--heightto be able to place the image right with regards to the text baseline. – eudoxos Nov 11 '11 at 15:56