I found today at the web site of the Wolfram Programming Lab the following Code which can create a Pi symbol filled with the digits of Pi:
With[
{
pos = PixelValuePositions[
Rasterize@
Text@Style[Pi,
90, {FontWeight -> "Bold", FontSize -> 70,
FontFamily -> "Source Serif Pro"}], 0]
},
Graphics[
MapThread[Text, {Characters@ToString@N[Pi, Length[pos] - 1], pos}],
ImageSize -> 400]
]
Question:
How can I create a word consisting of the sequence of letters which produce the word?

