java2d drawImage confusion

In my program I am drawing an image with

g.drawImage(image, 32, 32,  96  , 96, 11, 0, 13, 2, null);

I would expect this to start drawing the part of the image specified at {11,0}, {13,2} in the location in my program at {32,32} and finish at {96,96} however it does not! the srcx and srcy results act normally and they do grab the image that they need to. However something is going wrong with the dcx and the dcy parameters

as we can clearly see for a start the image is 32 by 32 (I would expect a 64 by 64 square) and it is definitely not being drawn from {32,32} {96,96} can someone shed some light on whats going wrong?