How to use JSL to restore a picture binary to a picture in a table?
The image binary file is downloaded from the web using JSL in the format of.
I tried the following JSL, which cannot be loaded as a picture in the table. rs=New HTTP Request(URL(u),Method("GET"),Headers(h));
rr=rs<<Send;
img="New Image(Char To Blob("||rr||"base64compressed\!"),\!"png\!")";
dt=New Table("kk",Add Rows(1),New Column("A", Expression),New Column("B", Expression),New Column("C", Express
...