Detect WWW Image bitmap dimensions?

Is it possible to detect the dimensions of an image loaded through WWW?

The image is a Texture2D, which has width and height properties.

texture width/height should work.

Tested with this c# example, gives 320x240: http://unity3d.com/support/documentation/ScriptReference/WWW.html

print("Size is " + www.texture.width + " by " + www.texture.height);