Here's the thing about storing style sizes...
I really want to do this, as it's a very requested feature. However, I
don't want to have image size calculations in Ruby. I feel it's simply
an area that's prone to error, and simply doesn't belong in the code,
considering the farming-out of all image-related activity. Paperclip
isn't an image processor, it just talks to one.
However, calling identify each time you call #dimensions is
inefficient, and I do already do square cropping calculations
(although this one's because IM didn't do this one until the advent of
the ^ geometry modifier), so there is a history of calculations in the
plugin.
I think I may run some tests to see if calling out to identify is
performant at all, because, in all honesty that's the route I'd rather
go (if feasible).