Extract String Representation of an Image
Is there a better way to get the string from New Image() than converting the expression to a string and extracting? It just feels sloppy. Arg() doesn't work with "Picture" objects.
Names Default to Here ( 1 );
g = New Image( Char To Blob( "blahblahblob", "base64compressed" ) );
f = Substr( Char( g ), Contains( Char( g ), "\!"") + 1, Contains( Char( g ), "\!", \!"base64" ) - ( Contains( Char( g
...