I'm confused by what you mean about resizing the image to 200x200 and then to 160x200. Do you just want the image to be cropped proportionally, based on it's longest side? If so, you can do this:
{% thumbnail something.image "200x200" as image %}
<img src="{{ image.url }}" alt="{{ something.name }}" />
{% endthumbnail %}
which should give you the behavior you were looking for in terms of cropping.
Are you looking to actually overlay a border over the image or do would creating a border via CSS be appropriate?
img {
background-color: #fff;
padding: 2px;
}
If instead you actually want to change the image itself, I am sure you can modify the source code (which you can fork on GitHub here) to do what you need.
I can also recommend django-photologue as an alternative if you want to do things like watermarks, etc... I have found it to be really nice when it comes to doing site wide image modifications, compared to sorl.