On my system, Mma 9.0.1.0
This will draw a frame:
(* This will draw a frame *)
Graphics[ImageSize -> 72 5, Frame -> True,
AspectRatio -> 1/GoldenRatio, PlotRange -> {{80, 300}, {10, 70}}]
But this will not:
(* This will not *)
Graphics[Frame -> True, AspectRatio -> 1/GoldenRatio,
PlotRange -> {{80, 300}, {10, 70}}, ImageSize -> 72 5]
The only difference I can see is that in the second one the ImageSize option is at the end of the sequence of options instead of the beginning.
Any ideas?
Best regards,
David