programming - How can I make CurrentValue for font characteristics pick up the font of the output not the input cell?
The command CurrentValue
(documentation) allows you to access various properties of fonts, such as x-height, line height, and various measures of width such as n-width and m-width. This has obvious applications in determining appropriate sizes of objects so that the text contained within them fits.
However it is not obvious how to pick up the characteristics of the font of styled output. For example, the following uses the width of the font in the input cell, not the selected style in the code (example adopted from this question).
Framed @ Graphics[Text[
Style["how quickly daft jumping zebras vex",
FontFamily -> "Verdana", FontSize -> 20]],
ImageSize -> CurrentValue["FontNWidth"]*35]
If I select the whole input cell (by its bracket, not just the text) and change the font, it works better, although of course "FontNWidth"
is not a perfect indicator of actual width of characters:
How can I concisely get the CurrentValue
dimensions from an arbitrarily chosen font?
Answer
You could do something like
{Framed@Graphics[
Text[Style[DynamicWrapper["how quickly daft jumping zebras vex",
p = CurrentValue["FontNWidth"]], FontFamily -> "Verdana",
FontSize -> 20]], ImageSize -> Dynamic[p]*35], Dynamic[p]}
This code demonstrates that the font chosen for the styled output is definitely being picked up by CurrentValue
.
Manipulate[{Framed@
Graphics[
Text[Style[
DynamicWrapper["how quickly daft jumping zebras vex",
p = CurrentValue["FontNWidth"]], FontFamily -> fontfam,
FontSize -> i]], ImageSize -> Dynamic[p]*42], Dynamic[p]}, {i,
10, 40}, {fontfam, {"Verdana", "Arial", "TimesNewRoman", "Tahoma"}}]
Comments
Post a Comment