Well, a few weeks ago I discovered I actually solved this problem before and I even wrote a short blog post about it without remembering, - smacks head. If it's only the URL you're after, you can do this:
from solr.thumbnail.main import DjangoThumbnail
img = imageObject # a normal image url returned from an ImageField
size = (100,100) # any tuple
img_resize_url = unicode(DjangoThumbnail(img, size))
It's a bit hackish, but it's better than Chris's solution in the sense that you can call any thumbnail size, without needing to adapt the extra_thumbnails field. That being said, I do find his solution cleaner in the sense that there are no internal imports from sorl required, but both ways should work.