You could use jquery to on-click of an image, (hide) all images except the one clicked on, and then fire the print function. That way the page should only print the image desired.
Something like
Code:
$('div.container img').click(function() {
$('div.container img').hide();
$(this).show();
window.print();
});