Sounds like a good greasemonkey/local script.
$('.post-text img').each(function(i,e){
var $img = $(this);
$('<span>').text('Expand/Collapse Image').css({
fontSize: '10px',
cursor: 'pointer'
}).click(function(e){
$img.slideToggle();
}).after('<br>').insertBefore($img);
});
i.e. I personally prefer the image there, but I can see how others might want to collapse them. End result? Use a personal customization where you feel the site's lacking.
UserScript:
// ==UserScript==
// @name Hide/Show StackExchange Images
// @description Adds a small (clickable) text above all images in posts, allowing you to hide/show the image.
// @namespace bradchristie
// @include http://stackoverflow.com/*
// @include http://*.stackoverflow.com/*
// @include http://*.stackexchange.com/*
// ==/UserScript==
var jQuery = $ = unsafeWindow.jQuery;
(function(){
$('.post-text img').each(function(i,e){
var $img = $(this);
$('<span>').text('Expand/Collapse Image').css({
fontSize: '10px',
cursor: 'pointer'
}).click(function(e){
$img.slideToggle();
}).after('<br>').insertBefore($img);
});
})(jQuery);