I remember Paul de Bruicker (cc'ed) used a similar service to get user
profiles (with first and last name and pictures, so you can "simulate"
users in your app, and you could ask for male or female profiles).

I don't remember the name, hopefully he will :)

Esteban A. Maringolo

On Mon, Apr 29, 2019 at 8:24 AM Sven Van Caekenberghe <s...@stfx.eu> wrote:
>
> Hi,
>
> This is a cool service: https://picsum.photos - it gives you example images 
> (pictures/photos).
>
> Here is how you can use this from a standard Pharo image (no pun intended).
>
> ZnEasy getJpeg: 'https://picsum.photos/512'.
>
> ImageReadWriter formFromStream: (ZnClient new
>   systemPolicy;
>   url: 'https://picsum.photos/640/480?grayscale';
>   accept: ZnMimeType imagePng;
>   get) readStream.
>
> Sven
>
>

Reply via email to