Yo can center the image by just centering the whole div tag.,Here is the example,
<div class="div1" align="center">
<img src="image1.jpg" alt="" />
</div>
OR
Give width to div tag and then center the image,,here is the example,
<div class="div2" width="100%">
<img src="image2.jpg" alt="" align="center" width="50%" />
</div>