Is there a way to get the dimensions that the results of a Text[] will occupy within a Graphics[]? Specifically, if I run something like
Graphics[Text[
Style["how quickly daft jumping zebras vex",
FontFamily -> "Verdana", FontSize -> 20]], PlotRange -> 1]
how can I get the dimensions relative to the coordinate system of the text?
edit: I have the PlotRange->1 in there because I'm using the text on a larger field and manipulating the text and other graphics using transformations that depend on the coordinate system. The text also is likely to change (hence my using sample text), so I'd like to have the transformations depend on measurements derived from the text (taking into account the styling of it).

PlotRangeis irrelevant in this object, even though it is visible in theAbsoluteOptions. You probably wantGraphics[Text[ Style["how quickly daft jumping zebras vex", FontFamily -> "Verdana", FontSize -> 20]], ImageSize -> 400, AspectRatio -> 0.1]– Verbeia Feb 12 '12 at 23:21PlotRange->1in there because I'm using text on a larger field and manipulating the text and other graphics using transformations that depend on the coordinate system... and I suppose I should edit that information into the question. – Isaac Feb 12 '12 at 23:25CurrentValueoptions are the answer, because I think they are worth documenting. – Verbeia Feb 13 '12 at 00:27CurrentValueand fonts. – Mike Honeychurch Feb 13 '12 at 04:39Rasterize[ ... , "RasterSize"]withStyle[ ... , LineBreakWithin -> False](the bits of scrolling text are fragments of lyrics from different songs). – Isaac Feb 13 '12 at 07:02