You need to remove the padding from the table cells. If you're using bbcode table tags, you could add this to your additional.css template:
Code:
.cms_table td
{
padding: 0;
}
but that will change all tables used in any article.
Another way would be to allow html in the article and then you could do something like
Code:
<table><tr><td style="padding: 0">img here</td></tr>
etc