How I can get the image from URL in Smalltalk?

97 Views Asked by At

I have some URL string, how I can get the image from URL? I'm using VisualWorks 9.2

1

There are 1 best solutions below

0
On BEST ANSWER

(URI fromString: yourString) readStream will produce a stream to read the data from.

You can also use HttpClient get: url.

You may want to load the TLS plugin parcel in oder to support https.