I've got a rotated image like this: 
What I would like to do is find the edges of the image. That is I would like to find the red edges as seen in this image:

I've tried to find the first and last non-zero elements and then use those as the coordinates of the edge. This is fine (if I could actually get it to work) but it is not extensible in that the red border may need to be extended to get a 'thicker' border. Essentially I'm trying to find the border because I need to move effects that occur at the edge of the rotated image that I need to get rid of. If someone could point me in the direction of a suitable answer (something along the lines of a bounding box or similar) I would much appreciate it!
EDIT Moved my edit to an answer as per @Jonas's suggestion.