While you've already accepted an answer, I'll just add that there is the (somewhat little-known) clip css property, although it does require that the element being clipped is position: absolute; (which is a shame):
img {
position: absolute;
clip: rect(0, 100px, 200px, 0);
/* clip: shape(top, right, bottom, left); NB 'rect' is the only available option */
}
There is a W3Schools entry for the clip property, I link to them only to link to the "try it" demo that they also offer. I would not, however, recommend W3Schools for anything other than casual reference.