In Mathematica 11.3 we have the new Iconize function. Say I create an iconized image grabbed from the web, like this:
hawkings = WebImageSearch["Stephen Hawking", "MaxItems" -> 5]; pic = Iconize[URLExecute[hawkings[[3]]["ImageHyperlink"]], "Stephen Hawking"] If I now evaluate input such as...
Evaluate[the-actual-icon] ... where the-actual-icon is the icon just created, then I'll get the image as output. However, if I evaluate instead...
Evaluate[pic] ...then I just get the icon object again, not the actual image.
How can I get the image by using the name pic for the icon rather than the iconized object itself?