Hi Greg,
what about:
Export["~/Desktop/test.png", TableForm[RandomReal[1, {10, 2}]]]
for png and
Export["~/Desktop/test.jpg", TableForm[RandomReal[1, {10, 2}]]]
for jpg?
If you want the frame, too, this might work:
Export["~/Desktop/test.png", Grid[RandomReal[1, {10, 2}], Frame -> All]]
Cheers,
M.
PS: You can improve the resolution:
Export["~/Desktop/test.jpg", Magnify[TableForm[RandomReal[1, {10, 2}]], 5]]